From 2f86fd97701a9303fd657fd6792039d29a9d0f56 Mon Sep 17 00:00:00 2001 From: Attila Hammer Date: Mon, 29 Jun 2026 14:23:18 +0200 Subject: [PATCH 1/6] correct some intent and shared hungarian tests hungarian intent property translations Correct some intersection large ops tests in Clearspeak and Simplespeak large operations tests --- tests/Languages/hu/ClearSpeak/large_ops.rs | 6 +-- tests/Languages/hu/SimpleSpeak/large_ops.rs | 6 +-- tests/Languages/hu/intent.rs | 56 +++++++++++++++------ tests/Languages/hu/shared.rs | 18 +++---- 4 files changed, 56 insertions(+), 30 deletions(-) diff --git a/tests/Languages/hu/ClearSpeak/large_ops.rs b/tests/Languages/hu/ClearSpeak/large_ops.rs index 994dafff..c50d483b 100644 --- a/tests/Languages/hu/ClearSpeak/large_ops.rs +++ b/tests/Languages/hu/ClearSpeak/large_ops.rs @@ -128,7 +128,7 @@ fn intersection_both() -> Result<()> { Si "; - test("hu", "ClearSpeak", expr, "kereszteződés ettől: i egyenlő 1, eddig: 10 értéke:; nagy s alsó index i")?; + test("hu", "ClearSpeak", expr, "metszet ettől: i egyenlő 1, eddig: 10 értéke:; nagy s alsó index i")?; return Ok(()); } @@ -143,7 +143,7 @@ fn intersection_under() -> Result<()> { Si "; - test("hu", "ClearSpeak", expr, "kereszteződés alatta nagy c, nagy s alsó index i")?; + test("hu", "ClearSpeak", expr, "metszet alatta nagy c, nagy s alsó index i")?; return Ok(()); } @@ -155,7 +155,7 @@ fn intersection() -> Result<()> { Si "; - test("hu", "ClearSpeak", expr, "kereszteződés nagy s alsó index i")?; + test("hu", "ClearSpeak", expr, "metszet nagy s alsó index i")?; return Ok(()); } diff --git a/tests/Languages/hu/SimpleSpeak/large_ops.rs b/tests/Languages/hu/SimpleSpeak/large_ops.rs index 1d798202..09e30e10 100644 --- a/tests/Languages/hu/SimpleSpeak/large_ops.rs +++ b/tests/Languages/hu/SimpleSpeak/large_ops.rs @@ -128,7 +128,7 @@ fn intersection_both() -> Result<()> { Si "; - test("hu", "SimpleSpeak", expr, "kereszteződés ettől: i egyenlő 1, eddig: 10 értéke:; nagy s alsó index i")?; + test("hu", "SimpleSpeak", expr, "metszet ettől: i egyenlő 1, eddig: 10 értéke:; nagy s alsó index i")?; return Ok(()); } @@ -143,7 +143,7 @@ fn intersection_under() -> Result<()> { Si "; - test("hu", "SimpleSpeak", expr, "kereszteződés alatta nagy c, nagy s alsó index i")?; + test("hu", "SimpleSpeak", expr, "metszet alatta nagy c, nagy s alsó index i")?; return Ok(()); } @@ -155,7 +155,7 @@ fn intersection() -> Result<()> { Si "; - test("hu", "SimpleSpeak", expr, "kereszteződés nagy s alsó index i")?; + test("hu", "SimpleSpeak", expr, "metszet nagy s alsó index i")?; return Ok(()); } diff --git a/tests/Languages/hu/intent.rs b/tests/Languages/hu/intent.rs index c5c2fa3e..65993668 100644 --- a/tests/Languages/hu/intent.rs +++ b/tests/Languages/hu/intent.rs @@ -7,18 +7,44 @@ use anyhow::Result; // AI generated #[test] fn silent_intent() -> Result<()> { - let expr = " 2 x "; + let expr = " 2 x "; test("hu", "SimpleSpeak", expr, "2 x")?; test("hu", "LiteralSpeak", expr, "2 x")?; return Ok(()); } +#[test] +fn silent_intent_underscore() -> Result<()> { + let expr = " + + H + 2 + "; + test("hu", "SimpleSpeak", expr, "nagy h vessző, 2")?; + test("hu", "ClearSpeak", expr, "nagy h vessző, 2")?; + return Ok(()); + +} + +#[test] +fn intent_prob_x() -> Result<()> { + //init_logger(); + let expr = " + + x + P + "; + test("hu", "ClearSpeak", expr, "valószínűség x")?; + return Ok(()); + +} + // AI generated #[test] fn prefix_intent() -> Result<()> { - let expr = r#" x T "#; - test("hu", "SimpleSpeak", expr, "testing x")?; + let expr = r#" x T "#; + test("hu", "SimpleSpeak", expr, "tesztelés x")?; return Ok(()); } @@ -26,8 +52,8 @@ fn prefix_intent() -> Result<()> { // AI generated #[test] fn postfix_intent() -> Result<()> { - let expr = r#" x T "#; - test("hu", "SimpleSpeak", expr, "x testing")?; + let expr = r#" x T "#; + test("hu", "SimpleSpeak", expr, "x tesztelése")?; return Ok(()); } @@ -35,12 +61,12 @@ fn postfix_intent() -> Result<()> { // AI generated #[test] fn infix_intent() -> Result<()> { - let expr = r#" + let expr = r#" x y z "#; - test("hu", "SimpleSpeak", expr, "x testing y testing z testing 2")?; + test("hu", "SimpleSpeak", expr, "x tesztelés y tesztelés z tesztelés 2")?; return Ok(()); } @@ -49,7 +75,7 @@ fn infix_intent() -> Result<()> { #[test] fn infix_intent_no_args() -> Result<()> { // this is illegal intent, so it is just an mrow with one child - let expr = r#" + let expr = r#" x "#; test("hu", "SimpleSpeak", expr, "x")?; @@ -60,11 +86,11 @@ fn infix_intent_no_args() -> Result<()> { // AI generated #[test] fn infix_intent_one_arg() -> Result<()> { - let expr = r#" + let expr = r#" x "#; // Note: we say the intent name because there are infix plus/minus with a single arg due to continued rows or combined columns - test("hu", "SimpleSpeak", expr, "testing x")?; + test("hu", "SimpleSpeak", expr, "teszteljük x")?; return Ok(()); } @@ -72,12 +98,12 @@ fn infix_intent_one_arg() -> Result<()> { // AI generated #[test] fn function_intent() -> Result<()> { - let expr = r#" + let expr = r#" x y z "#; - test("hu", "SimpleSpeak", expr, "testing x vessző, y vessző, z vessző, 2")?; + test("hu", "SimpleSpeak", expr, "teszteljük x vessző, y vessző, z vessző, 2")?; return Ok(()); } @@ -86,7 +112,7 @@ fn function_intent() -> Result<()> { #[test] fn function_no_args_intent() -> Result<()> { // this is illegal intent, so it is just an mrow with one child - let expr = r#" + let expr = r#" x "#; test("hu", "SimpleSpeak", expr, "x")?; @@ -97,10 +123,10 @@ fn function_no_args_intent() -> Result<()> { // AI generated #[test] fn function_one_arg_intent() -> Result<()> { - let expr = r#" + let expr = r#" x "#; - test("hu", "SimpleSpeak", expr, "testing x")?; + test("hu", "SimpleSpeak", expr, "teszteljük x")?; return Ok(()); } diff --git a/tests/Languages/hu/shared.rs b/tests/Languages/hu/shared.rs index 1d47de7f..a97805f8 100644 --- a/tests/Languages/hu/shared.rs +++ b/tests/Languages/hu/shared.rs @@ -22,7 +22,7 @@ fn modified_vars() -> Result<()> { t "; test("hu", "SimpleSpeak", expr, - "a súlyozott, b tilde, c rövid, b ellenőrzés, c súlyozott; plusz, r hacsek karakter mint repülő ékezet, plusz; x pont, y pont, z dupla pont, u hármas pont, v négyes pont; plusz x kalap, plusz vektor kezdete t")?; + "a súlyozott, b tilde, c rövid, b ellenőrzés, c súlyozott; plusz, r hacsek karakter mint repülő ékezet; plusz; x pont, y pont, z dupla pont, u hármas pont, v négyes pont; plusz x kalap, plusz vektor kezdete t")?; return Ok(()); } @@ -477,14 +477,14 @@ fn literal_speak_perpendicular() -> Result<()> { A - + B "#; - test("hu", "LiteralSpeak", expr, "nagy a jobbra nyíl, perpendicular to, nagy b jobbra nyíl")?; + test("hu", "LiteralSpeak", expr, "nagy a jobbra nyíl; merőleges nagy b jobbra nyíl")?; return Ok(()); } @@ -513,7 +513,7 @@ fn literal_speak_chars() -> Result<()> { // AI generated #[test] fn literal_speak_with_name() -> Result<()> { - let expr = r#" + let expr = r#" f @@ -527,7 +527,7 @@ fn literal_speak_with_name() -> Result<()> { "#; - test("hu", "LiteralSpeak", expr, "forced f, bal zárójel, x felkiáltójel, jobb zárójel")?; + test("hu", "LiteralSpeak", expr, "kényszerített f, bal zárójel, x felkiáltójel, jobb zárójel")?; return Ok(()); } @@ -563,14 +563,14 @@ fn literal_intent_property() -> Result<()> { A - + B "#; - test("hu", "SimpleSpeak", expr, "nagy a jobbra nyíl, perpendicular to, nagy b jobbra nyíl")?; + test("hu", "SimpleSpeak", expr, "nagy a jobbra nyíl; merőleges nagy b jobbra nyíl")?; return Ok(()); } @@ -578,7 +578,7 @@ fn literal_intent_property() -> Result<()> { // AI generated #[test] fn literal_intent_property_with_name() -> Result<()> { - let expr = r#" + let expr = r#" f @@ -592,7 +592,7 @@ fn literal_intent_property_with_name() -> Result<()> { "#; - test("hu", "SimpleSpeak", expr, "forced f, nyitott zárójel, x felkiáltójel, zárt zárójel")?; + test("hu", "SimpleSpeak", expr, "kényszerített f, nyitott zárójel, x felkiáltójel, zárt zárójel")?; return Ok(()); } From 54db37ab6535777c6ddbb3f9a374cd22ca8f4cb8 Mon Sep 17 00:00:00 2001 From: Attila Hammer Date: Sun, 5 Jul 2026 22:32:52 +0200 Subject: [PATCH 2/6] Rules/Languages/hu/unicode-full.yaml: Add revieved and corrected translations Correct some alphabet test after unicode-full.yaml added cap string translations and script translation Signed-off-by: Attila Hammer --- Rules/Languages/hu/unicode-full.yaml | 7204 +++++++++++++------------- tests/Languages/hu/alphabets.rs | 22 +- 2 files changed, 3635 insertions(+), 3591 deletions(-) diff --git a/Rules/Languages/hu/unicode-full.yaml b/Rules/Languages/hu/unicode-full.yaml index d9be96bb..f73d55ae 100644 --- a/Rules/Languages/hu/unicode-full.yaml +++ b/Rules/Languages/hu/unicode-full.yaml @@ -1,3580 +1,3624 @@ ---- - - - - "¢": [T: "centiméter"] # 0xa2 (en: 'cents', DeepL translation) - - "£": [T: "font"] # 0xa3 (en: 'pounds', DeepL translation) - - "¤": [T: "valuta jel"] # 0xa4 (en: 'currency sign', DeepL translation) - - "¥": [T: "jen"] # 0xa5 (en: 'yen', DeepL translation) - - "¦": [T: "szaggatott sáv"] # 0xa6 (en: 'broken bar', DeepL translation) - - "§": [T: "szakasz"] # 0xa7 (en: 'section', DeepL translation) - - "¨": [T: "dupla pont"] # 0xa8 (en: 'double dot', DeepL translation) - - "©": [T: "szerzői jog"] # 0xa9 (DeepL translation) - - "ª": [T: "női rendjelző"] # 0xaa (en: 'feminine ordinal indicator', DeepL translation) - - "«": [T: "balra mutató kettős szögletes idézőjel"] # 0xab (en: 'left-pointing double angle quote mark', DeepL translation) - - "¯": # 0xaf - - test: - if: "ancestor::m:modified-variable and preceding-sibling::*[1][self::m:mi]" - then: [T: "sáv"] # (en: 'bar', DeepL translation) - else: [T: "vonal"] # (en: 'line', DeepL translation) - - "²": [T: "kettő"] # 0xb2 (en: 'two', DeepL translation) - - "³": [T: "három"] # 0xb3 (en: 'three', DeepL translation) - - "µ": [T: "mikro"] # 0xb5 (en: 'micro', DeepL translation) - - "¹": [T: "egy"] # 0xb9 (en: 'one', DeepL translation) - - "º": [T: "hímnemű ordinális jelző"] # 0xb9 (en: 'masculine ordinal indicator', DeepL translation) - - "¡": [T: "fordított felkiáltójel"] # 0xa1 (en: 'inverted exclamation mark', DeepL translation) - - "¶": [T: "bekezdésjelző"] # 0xb6 (en: 'paragraph mark', DeepL translation) - - "¿": [T: "fordított kérdőjel"] # 0xbf (en: 'inverted question mark', DeepL translation) - - - "ʰ": [T: "módosító kis h"] # 0x2b0 (en: 'modifier small h', DeepL translation) - - "ʱ": [T: "módosító kis h horoggal"] # 0x2b1 (en: 'modifier small h with hook', DeepL translation) - - "ʲ": [T: "módosító kis j"] # 0x2b2 (en: 'modifier small j', DeepL translation) - - "ʳ": [T: "módosító kis r"] # 0x2b3 (en: 'modifier small r', DeepL translation) - - "ʴ": [T: "módosító kis fordított r"] # 0x2b4 (en: 'modifier small turned r', DeepL translation) - - "ʵ": [T: "módosító kis fordított r horoggal"] # 0x2b5 (en: 'modifier small turned r with hook', DeepL translation) - - "ʶ": # 0x2b6 - - T: "módosító kis fordított a" # (en: 'modifier small inverted', DeepL translation) - - SPELL: "translate('R', 'R', 'R')" - - - "ʷ": [T: "módosító kis w"] # 0x2b7 (en: 'modifier small w', DeepL translation) - - "ʸ": [T: "módosító kis y"] # 0x2b8 (en: 'modifier small y', DeepL translation) - - "ʹ": [T: "módosító prím"] # 0x2b9 (DeepL translation) - - "ʺ": [T: "módosító kettős prím"] # 0x2ba (en: 'modifier double prime', DeepL translation) - - "ʻ": [T: "módosító fordított vessző"] # 0x2bb (en: 'modifier turned comma', DeepL translation) - - "ʼ": [T: "módosító aposztróf"] # 0x2bc (en: 'modifier apostrophe', DeepL translation) - - "ʽ": [T: "módosító fordított vessző"] # 0x2bd (en: 'modifier reversed comma', DeepL translation) - - "ʾ": [T: "módosító jobb fél gyűrű"] # 0x2be (en: 'modifier right half ring', DeepL translation) - - "ʿ": [T: "módosító bal fél gyűrű"] # 0x2bf (en: 'modifier left half ring', DeepL translation) - - "ˀ": [T: "módosító glottal stop"] # 0x2c0 (en: 'modifier glottal stop', DeepL translation) - - "ˁ": [T: "módosító fordított glottal stop"] # 0x2c1 (en: 'modifier reversed glottal stop', DeepL translation) - - "˂": [T: "módosító bal oldali nyílhegy"] # 0x2c2 (en: 'modifier left arrowhead', DeepL translation) - - "˃": [T: "módosító jobb oldali nyílhegy"] # 0x2c3 (en: 'modifier right arrowhead', DeepL translation) - - "˄": [T: "konjunkció"] # 0x2c4 (en: 'modifier up arrowhead', DeepL translation) - - "˅": [T: "diszjunkció"] # 0x2c5 (en: 'modifier down arrowhead', DeepL translation) - - "ˆ": [T: "kalap karakter mint repülő ékezet"] # 0x2c6 (en: 'modifier circumflex accent', DeepL translation) - - "ˇ": [T: "hacsek karakter mint repülő ékezet"] # 0x2c7 (en: 'check', DeepL translation) - - "ˈ": [T: "módosító függőleges vonal"] # 0x2c8 (en: 'modifier vertical line', DeepL translation) - - "ˉ": [T: "módosító makron"] # 0x2c9 (en: 'modifier macron', DeepL translation) - - "ˊ": [T: "vessző mint éles ékezet"] # 0x2ca (en: 'modifier acute accent', DeepL translation) - - "ˋ": [T: "módosító súlyos ékezet"] # 0x2cb (en: 'modifier grave accent', DeepL translation) - - "ˌ": [T: "módosító alacsony függőleges vonal"] # 0x2cc (en: 'modifier low vertical line', DeepL translation) - - "ˍ": [T: "módosító alacsony makron"] # 0x2cd (en: 'modifier low macron', DeepL translation) - - "ˎ": [T: "módosító alacsony súlyos ékezet"] # 0x2ce (en: 'modifier low grave accent', DeepL translation) - - "ˏ": [T: "módosító alacsony hegyes ékezet"] # 0x2cf (en: 'modifier low acute accent', DeepL translation) - - "ː": [T: "módosító háromszögű kettőspont"] # 0x2d0 (en: 'modifier triangular colon', DeepL translation) - - "ˑ": [T: "módosító fél háromszög alakú kettőspont"] # 0x2d1 (en: 'modifier half triangular colon', DeepL translation) - - "˒": [T: "módosító középen jobb oldali félgyűrűvel"] # 0x2d2 (en: 'modifier centered right half ring', DeepL translation) - - "˓": [T: "módosító középen bal oldali félgyűrű"] # 0x2d3 (en: 'modifier centered left half ring', DeepL translation) - - "˔": [T: "módosító fel tadck"] # 0x2d4 (en: 'modifier up tadck', DeepL translation) - - "˕": [T: "módosító lefelé tack"] # 0x2d5 (en: 'modifier down tack', DeepL translation) - - "˖": [T: "módosító plusz jel"] # 0x2d6 (en: 'modifier plus sign', DeepL translation) - - "˗": [T: "módosító mínusz jel"] # 0x2d7 (en: 'modifier minus sign', DeepL translation) - - "˘": [T: "breve"] # 0x2d8 (DeepL translation) - - "˙": [T: "pont"] # 0x2d9 (en: 'dot', DeepL translation) - - "˚": [T: "gyűrű felett"] # 0x2da (en: 'ring above', DeepL translation) - - "˛": [T: "ogonek"] # 0x2db (DeepL translation) - - "˜": [T: "kis tilde"] # 0x2dc (en: 'small tilde', DeepL translation) - - "˝": [T: "kettős hegyes ékezet"] # 0x2dd (en: 'double acute accent', DeepL translation) - - "˞": [T: "módosító rótikus horog"] # 0x2de (en: 'modifier rhotic hook', DeepL translation) - - "˟": [T: "módosító kereszt ékezet"] # 0x2df (en: 'modifier cross accent', DeepL translation) - - "ˠ": [T: "módosító kis gamma"] # 0x2e0 (en: 'modifier small gamma', DeepL translation) - - "ˡ": [T: "módosító kis l"] # 0x2e1 (en: 'modifier small l', DeepL translation) - - "ˢ": [T: "módosító kis es"] # 0x2e2 (en: 'modifier small s', DeepL translation) - - "ˣ": [T: "módosító kis x"] # 0x2e3 (en: 'modifier small x', DeepL translation) - - "ˤ": [T: "módosító kis fordított glottal stop"] # 0x2e4 (en: 'modifier small reversed glottal stop', DeepL translation) - - "˥": [T: "módosító extra magas hangsáv"] # 0x2e5 (en: 'modifier extra-high tone bar', DeepL translation) - - "˦": [T: "módosító magas hangsáv"] # 0x2e6 (en: 'modifier high tone bar', DeepL translation) - - "˧": [T: "módosító középtónusú sáv"] # 0x2e7 (en: 'modifier mid tone bar', DeepL translation) - - "˨": [T: "módosító alacsony hangsáv"] # 0x2e8 (en: 'modifier low tone bar', DeepL translation) - - "˩": [t: "módosító extra alacsony tónusú sáv"] # 0x2e9 (en: 'modifier extra-low tone bar', DeepL translation) - - "˪": [t: "módosító yin távozó hangjelzés"] # 0x2ea (en: 'modifier yin departing tone mark', DeepL translation) - - "˫": [t: "módosító jang távozó hangjelzés"] # 0x2eb (en: 'modifier yang departing tone mark', DeepL translation) - - "ˬ": [t: "módosító hangképzés"] # 0x2ec (en: 'modifier voicing', DeepL translation) - - "˭": [t: "modifikátor unaspirated"] # 0x2ed (en: 'modifier unaspirated', DeepL translation) - - "ˮ": [t: "módosító kettős aposztróf"] # 0x2ee (en: 'modifier double apostrophe', DeepL translation) - - "˯": [t: "módosító alacsonyan lefelé mutató nyílvessző"] # 0x2ef (en: 'modifier low down arrowhead', DeepL translation) - - "˰": [t: "módosító alacsony felfelé nyílhegy"] # 0x2f0 (en: 'modifier low up arrowhead', DeepL translation) - - "˱": [t: "módosító alacsony bal oldali nyílhegy"] # 0x2f1 (en: 'modifier low left arrowhead', DeepL translation) - - "˲": [t: "módosító alacsony jobb oldali nyílhegy"] # 0x2f2 (en: 'modifier low right arrowhead', DeepL translation) - - "˳": [t: "módosító alacsony gyűrű"] # 0x2f3 (en: 'modifier low ring', DeepL translation) - - "˴": [t: "módosító középső síró ékezet"] # 0x2f4 (en: 'modifier middle grave accent', DeepL translation) - - "˵": [t: "módosító középső kettős sír ékezet"] # 0x2f5 (en: 'modifier middle double grave accent', DeepL translation) - - "˶": [t: "módosító középső kettős hegyes ékezet"] # 0x2f6 (en: 'modifier middle double acute accent', DeepL translation) - - "˷": [t: "módosító alacsony tilde"] # 0x2f7 (en: 'modifier low tilde', DeepL translation) - - "˸": [t: "módosító emelt kettőspont"] # 0x2f8 (en: 'modifier raised colon', DeepL translation) - - "˹": [t: "módosító kezdődik magas hang"] # 0x2f9 (en: 'modifier begin high tone', DeepL translation) - - "˺": [t: "módosító végén magas hang"] # 0x2fa (en: 'modifier end high tone', DeepL translation) - - "˻": [t: "módosító kezdődik alacsony hanggal"] # 0x2fb (en: 'modifier begin low tone', DeepL translation) - - "˼": [t: "módosító vége mély hang"] # 0x2fc (en: 'modifier end low tone', DeepL translation) - - "˽": [t: "módosító polc"] # 0x2fd (en: 'modifier shelf', DeepL translation) - - "˾": [t: "módosító nyitott polc"] # 0x2fe (en: 'modifier open shelf', DeepL translation) - - "˿": [t: "módosító bal alsó bal nyíl"] # 0x2ff (en: 'modifier low left arrow', DeepL translation) - - "̈": [t: "diaerézis díszítés"] # 0x308 (en: 'diaeresis embellishment', DeepL translation) - - "̉": [t: "horog a díszítés felett"] # 0x309 (en: 'hook above embellishment', DeepL translation) - - "̊": [t: "gyűrű a díszítés felett"] # 0x30a (en: 'ring above embellishment', DeepL translation) - - "̋": [t: "dupla hegyes ékezetű ékezet díszítés"] # 0x30b (en: 'double acute accent embellishment', DeepL translation) - - "̌": [t: "ellenőrzés"] # 0x30c (en: 'check', DeepL translation) - - "̍": [t: "függőleges vonal a díszítés felett"] # 0x30d (en: 'vertical line above embellishment', DeepL translation) - - "̎": [t: "dupla függőleges vonal a díszítés felett"] # 0x30e (en: 'double vertical line above embellishment', DeepL translation) - - "̏": [t: "dupla sír ékezet díszítés"] # 0x30f (en: 'double grave accent embellishment', DeepL translation) - - "̐": [t: "candrabindu díszítés"] # 0x310 (en: 'candrabindu embellishment', DeepL translation) - - "̑": [t: "fordított breviális díszítés"] # 0x311 (en: 'inverted breve embellishment', DeepL translation) - - "̒": [t: "fordított vessző felett díszítés"] # 0x312 (en: 'turned comma above embellishment', DeepL translation) - - "̓": [t: "vessző a díszítés felett"] # 0x313 (en: 'comma above embellishment', DeepL translation) - - "̔": [t: "fordított vessző a díszítés felett"] # 0x314 (en: 'reversed comma above embellishment', DeepL translation) - - "̕": [t: "vessző felett jobbra díszítés"] # 0x315 (en: 'comma above right embellishment', DeepL translation) - - "̖": [t: "súlyos ékezet alatti díszítés"] # 0x316 (en: 'grave accent below embellishment', DeepL translation) - - "̗": [t: "éles ékezet alatt díszítés"] # 0x317 (en: 'acute accent below embellishment', DeepL translation) - - "̘": [t: "bal szögletes zárójel alul díszítés"] # 0x318 (en: 'left tack below embellishment', DeepL translation) - - "̙": [t: "jobb oldali szegecs a díszítés alatt"] # 0x319 (en: 'right tack below embellishment', DeepL translation) - - "̚": [t: "bal szög a díszítés felett"] # 0x31a (en: 'left angle above embellishment', DeepL translation) - - "̛": [t: "szarv díszítés"] # 0x31b (en: 'horn embellishment', DeepL translation) - - "̜": [t: "bal félgyűrű alatti díszítés"] # 0x31c (en: 'left half ring below embellishment', DeepL translation) - - "̝": [t: "felszög alul díszítés"] # 0x31d (en: 'up tack below embellishment', DeepL translation) - - "̞": [t: "lefelé fordulás a díszítés alatt"] # 0x31e (en: 'down tack below embellishment', DeepL translation) - - "̟": [t: "pluszjel a díszítés alatt"] # 0x31f (en: 'plus sign below embellishment', DeepL translation) - - "̠": [t: "mínusz jel alatti díszítés"] # 0x320 (en: 'minus sign below embellishment', DeepL translation) - - "̡": [t: "palatalizált horog alatti díszítés"] # 0x321 (en: 'palatalized hook below embellishment', DeepL translation) - - "̢": [t: "retroflex horog alatti díszítés"] # 0x322 (en: 'retroflex hook below embellishment', DeepL translation) - - "̣": [t: "pont alatt díszítés"] # 0x323 (en: 'dot below embellishment', DeepL translation) - - "̤": [t: "diaerézis a díszítés alatt"] # 0x324 (en: 'diaeresis below embellishment', DeepL translation) - - "̥": [t: "gyűrű a díszítés alatt"] # 0x325 (en: 'ring below embellishment', DeepL translation) - - "̦": [t: "vessző a díszítés alatt"] # 0x326 (en: 'comma below embellishment', DeepL translation) - - "̧": [t: "cedilla díszítés"] # 0x327 (en: 'cedilla embellishment', DeepL translation) - - "̨": [t: "ogonek díszítés"] # 0x328 (en: 'ogonek embellishment', DeepL translation) - - "̩": [t: "függőleges vonal a díszítés alatt"] # 0x329 (en: 'vertical line below embellishment', DeepL translation) - - "̪": [t: "híd alatti díszítés"] # 0x32a (en: 'bridge below embellishment', DeepL translation) - - "̫": [t: "fordított kettős ív a díszítés alatt"] # 0x32b (en: 'inverted double arch below embellishment', DeepL translation) - - "̬": [t: "caron alatti díszítés"] # 0x32c (en: 'caron below embellishment', DeepL translation) - - "̭": [t: "körkörös ékezet a díszítés alatt"] # 0x32d (en: 'circumflex accent below embellishment', DeepL translation) - - "̮": [t: "breve alatti díszítés"] # 0x32e (en: 'breve below embellishment', DeepL translation) - - "̯": [t: "fordított breve alatti díszítés"] # 0x32f (en: 'inverted breve below embellishment', DeepL translation) - - "̰": [t: "tilde alul díszítés"] # 0x330 (en: 'tilde below embellishment', DeepL translation) - - "̱": [t: "makron alatti díszítés"] # 0x331 (en: 'macron below embellishment', DeepL translation) - - "̲": [t: "alacsony vonal díszítés"] # 0x332 (en: 'low line embellishment', DeepL translation) - - "̳": [t: "kettős alacsony vonalú díszítés"] # 0x333 (en: 'double low line embellishment', DeepL translation) - - "̴": [t: "tilde feletti díszítés"] # 0x334 (en: 'tilde overlay embellishment', DeepL translation) - - "̵": [t: "rövid vonallal felrakott díszítés"] # 0x335 (en: 'short stroke overlay embellishment', DeepL translation) - - "̶": [t: "hosszú vonás overlay díszítés"] # 0x336 (en: 'long stroke overlay embellishment', DeepL translation) - - "̷": [t: "rövid solidus feletti díszítés"] # 0x337 (en: 'short solidus overlay embellishment', DeepL translation) - - "̸": [t: "hosszú solidus feletti díszítés"] # 0x338 (en: 'long solidus overlay embellishment', DeepL translation) - - "̹": [t: "jobb oldali félgyűrű alatt díszítés"] # 0x339 (en: 'right half ring below embellishment', DeepL translation) - - "̺": [t: "fordított híd alatti díszítés"] # 0x33a (en: 'inverted bridge below embellishment', DeepL translation) - - "̻": [t: "négyzet alatti díszítéssel"] # 0x33b (en: 'square below embellishment', DeepL translation) - - "̼": [t: "sirály alul díszítés"] # 0x33c (en: 'seagull below embellishment', DeepL translation) - - "̽": [t: "x feletti díszítés"] # 0x33d (en: 'x above embellishment', DeepL translation) - - "̾": [t: "függőleges tilde díszítés"] # 0x33e (en: 'vertical tilde embellishment', DeepL translation) - - "̿": [t: "dupla felülvonali díszítés"] # 0x33f (en: 'double overline embellishment', DeepL translation) - - "̀": [t: "súlyos hangjelzés díszítés"] # 0x340 (en: 'grave tone mark embellishment', DeepL translation) - - "́": [t: "hegyes tónusjel díszítés"] # 0x341 (en: 'acute tone mark embellishment', DeepL translation) - - "͆": [t: "híd felett"] # 0x346 (en: 'bridge above', DeepL translation) - - - "ΪΫϏ": # 0x3aa, 0x3ab, 0x3cf - - test: - if: "$CapitalLetters_Beep" - then: - - audio: - value: "beep.mp4" - replace: [] - - test: - if: "$CapitalLetters_UseWord" - then_test: - if: "$SpeechOverrides_CapitalLetters = ''" - then_test: - if: "$Impairment = 'Blindness'" - then: [t: "nagybetű"] # (en: 'cap', DeepL translation) - else: [x: "$SpeechOverrides_CapitalLetters"] - - pitch: - value: "$CapitalLetters_Pitch" - replace: [spell: "translate('.', 'ΪΫϏ', 'ιυϗ')"] - - t: "dialitikával" # (en: 'with dialytika', DeepL translation) - - "ϊ": [t: "jota dialitikával"] # 0x3ca (en: 'iota with dialytika', DeepL translation) - - "ϋ": [t: "felszilon dialitikával"] # 0x3cb (en: 'upsilon with dialytika', DeepL translation) - - "ό": [t: "omikron tonossal"] # 0x3cc (en: 'omicron with tonos', DeepL translation) - - "ύ": [t: "upsilon tonossal"] # 0x3cd (en: 'upsilon with tonos', DeepL translation) - - "ώ": [t: "omega tonossal"] # 0x3ce (en: 'omega with tonos', DeepL translation) - - "ϐ": [t: "béta"] # 0x3d0 (en: 'beta', DeepL translation) - - "ϑ": [t: "théta"] # 0x3d1 (en: 'theta', DeepL translation) - - "ϒ": [t: "felfelé mutató horoggal"] # 0x3d2 (en: 'upsilon with hook', DeepL translation) - - "ϓ": [t: "felfelé mutató hegyes és kampós szög"] # 0x3d3 (en: 'upsilon with acute and hook', DeepL translation) - - "ϔ": [t: "upsilon diaerézissel és horoggal"] # 0x3d4 (en: 'upsilon with diaeresis and hook', DeepL translation) - - "ϗ": [t: "kai"] # 0x3d7 (DeepL translation) - - "Ϙ": [t: "nagybetűs archaikus koppa"] # 0x3d8 (en: 'cap archaic koppa', DeepL translation) - - "ϙ": [t: "archaikus koppa"] # 0x3d9 (en: 'archaic koppa', DeepL translation) - - "А-Я": # 0x410 - 0x42f - - test: - if: "$CapitalLetters_Beep" - then: - - audio: - value: "beep.mp4" - replace: [] - - test: - if: "$CapitalLetters_UseWord" - then_test: - if: "$SpeechOverrides_CapitalLetters = ''" - then_test: - if: "$Impairment = 'Blindness'" - then: [t: "nagybetű"] # (en: 'cap', DeepL translation) - else: [x: "$SpeechOverrides_CapitalLetters"] - - pitch: - value: "$CapitalLetters_Pitch" - replace: [spell: "translate('.', 'АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ', 'абвгдежзийклмнопрстуфхцчшщъыьэюя')"] - - "а": [t: "а"] # 0x430 (en: 'a', DeepL translation) - - "б": [t: "be"] # 0x431 (DeepL translation) - - "в": [t: "ve"] # 0x432 (DeepL translation) - - "г": [t: "ghe"] # 0x433 (DeepL translation) - - "д": [t: "de"] # 0x434 (DeepL translation) - - "е": [t: "azaz"] # 0x435 (en: 'ie', DeepL translation) - - "ж": [t: "zhe"] # 0x436 (DeepL translation) - - "з": [t: "ze"] # 0x437 (DeepL translation) - - "и": [t: "и"] # 0x438 (en: 'i', DeepL translation) - - "й": [t: "rövid i"] # 0x439 (en: 'short i', DeepL translation) - - "к": [t: "ka"] # 0x43a (DeepL translation) - - "л": [t: "el"] # 0x43b (DeepL translation) - - "м": [t: "em"] # 0x43c (DeepL translation) - - "н": [t: "en"] # 0x43d (DeepL translation) - - "о": [t: "о"] # 0x43e (en: 'o', DeepL translation) - - "п": [t: "pe"] # 0x43f (DeepL translation) - - "р": [t: "er"] # 0x440 (DeepL translation) - - "с": [t: "es"] # 0x441 (DeepL translation) - - "т": [t: "te"] # 0x442 (DeepL translation) - - "у": [t: "у"] # 0x443 (en: 'u', DeepL translation) - - "ф": [t: "ef"] # 0x444 (DeepL translation) - - "х": [t: "ha"] # 0x445 (DeepL translation) - - "ц": [t: "tse"] # 0x446 (DeepL translation) - - "ч": [t: "che"] # 0x447 (DeepL translation) - - "ш": [t: "sha"] # 0x448 (DeepL translation) - - "щ": [t: "shcha"] # 0x449 (DeepL translation) - - "ъ": [t: "kemény jel"] # 0x44a (en: 'hard sign', DeepL translation) - - "ы": [t: "yeru"] # 0x44b (DeepL translation) - - "ь": [t: "lágy jel"] # 0x44c (en: 'soft sign', DeepL translation) - - "э": [t: "э"] # 0x44d (en: 'e', DeepL translation) - - "ю": [t: "yu"] # 0x44e (DeepL translation) - - "я": [t: "ya"] # 0x44f (DeepL translation) - - "؆": [t: "arab-indikus köbgyök"] # 0x606 (en: 'Arabic-Indic cube root', DeepL translation) - - "؇": [t: "arab-indiai negyedik gyök"] # 0x607 (en: 'Arabic-Indic fourth root', DeepL translation) - - "؈": [t: "arab sugár"] # 0x608 (en: 'Arabic ray', DeepL translation) - - "‐": [t: "kötőjel"] # 0x2010 (en: 'hyphen', DeepL translation) - - "‑": [t: "kötőjel"] # 0x2011 (en: 'hyphen', DeepL translation) - - "‒": [t: "számjeles kötőjel"] # 0x2012 (en: 'figure dash', DeepL translation) - - "†": [t: "tőr"] # 0x2020 (en: 'dagger', DeepL translation) - - "‡": [t: "dupla tőr"] # 0x2021 (en: 'double dagger', DeepL translation) - - - " - ": [t: "‡"] # 0x2000 - 0x2007 (en: ' ', DeepL translation) - - - "•": # 0x2022 - - test: - if: "@data-chem-formula-op" - then: [t: "pont"] # (en: 'dot', DeepL translation) - else: [t: "golyó"] # (en: 'bullet', DeepL translation) - - - "‰": [t: "per mille"] # 0x2030 (DeepL translation) - - "‱": [t: "per tízezer"] # 0x2031 (en: 'per ten thousand', DeepL translation) - - "‵": [t: "fordított prím"] # 0x2035 (en: 'reversed prime', DeepL translation) - - "‶": [t: "fordított dupla prímszám"] # 0x2036 (en: 'reversed double prime', DeepL translation) - - "‷": [t: "fordított hármas prím"] # 0x2037 (en: 'reversed triple prime', DeepL translation) - - "‸": [t: "a"] # 0x2038 (en: 'to the', DeepL translation) - - "‹": [t: "egyetlen balra mutató szögletes idézőjel"] # 0x2039 (en: 'single left pointing angle quote mark', DeepL translation) - - "›": [t: "egyszerű jobbra mutató szögletes idézőjel"] # 0x203a (en: 'single right pointing angle quote mark', DeepL translation) - - "‼": # 0x203c - - test: - if: "ancestor-or-self::*[contains(@data-intent-property, ':literal:')]" - then: [t: "dupla felkiáltójel"] # 0x203c (en: 'double exclamation point', DeepL translation) - else: [t: "dupla faktoriális"] # 0x203c (en: 'double factorial', DeepL translation) - - "⁄": # 0x2044 - - test: - if: "ancestor-or-self::*[contains(@data-intent-property, ':literal:')]" - then: [t: "nagy átlós vonal"] # 0x203c (en: 'large slash', DeepL translation) - else: [t: "osztva"] # 0x203c (en: 'divided by', DeepL translation) - - "⁅": [t: "bal szögletes zárójel tollal"] # 0x2045 (en: 'left square bracket with quill', DeepL translation) - - "⁆": [t: "jobb oldali szögletes zárójel tollal"] # 0x2046 (en: 'right square bracket with quill', DeepL translation) - - "※": [t: "referenciajel"] # 0x203b (en: 'reference mark', DeepL translation) - - "‿": [t: "alá kötés"] # 0x203F (en: 'under tie', DeepL translation) - - "⁀": [t: "nyakkendő"] # 0x2040 (en: 'tie', DeepL translation) - - "⁎": [t: "alacsony csillaggal"] # 0x204e (en: 'low asterisk', DeepL translation) - - "⁏": [t: "fordított pontosvessző"] # 0x204f (en: 'reversed semicolon', DeepL translation) - - "⁐": [t: "közelről"] # 0x2050 (en: 'close up', DeepL translation) - - "⁑": [t: "két függőleges csillag"] # 0x2051 (en: 'two vertical asterisks', DeepL translation) - - "⁒": [t: "kereskedelmi mínusz jel"] # 0x2052 (en: 'commercial minus sign', DeepL translation) - - "⁗": [t: "négyszeres prím"] # 0x2057 (en: 'quadruple prime', DeepL translation) - - "⁠": [t: ""] # 0x2060 - - "⁰": [t: "a nulladik hatványig"] # 0x2070 (en: 'to the zeroth power', DeepL translation) - - "ⁱ": [t: "i-edik hatványig"] # 0x2071 (en: 'to the i-th power', DeepL translation) - - "⁴": [t: "a negyedik hatványig"] # 0x2074 (en: 'to the fourth power', DeepL translation) - - "⁵": [t: "ötödik hatványra"] # 0x2075 (en: 'to the fifth power', DeepL translation) - - "⁶": [t: "hatodik hatványra"] # 0x2076 (en: 'to the sixth power', DeepL translation) - - "⁷": [t: "hetedik hatványra"] # 0x2077 (en: 'to the seventh power', DeepL translation) - - "⁸": [t: "az ath hatványra"] # 0x2078 (en: 'to the eighth power', DeepL translation) - - "⁹": [t: "a kilencedik hatványra"] # 0x2079 (en: 'to the ninth power', DeepL translation) - - "⁺": [t: "felsőbbrendű plusz jel"] # 0x207a (en: 'superscript plus sign', DeepL translation) - - "⁻": [t: "feliratos mínusz"] # 0x207b (en: 'superscript minus', DeepL translation) - - "⁼": [t: "feljebb írt egyenlőségjel"] # 0x207c (en: 'superscript equals sign', DeepL translation) - - "⁽": [t: "feliratos bal oldali zárójel"] # 0x207d (en: 'superscript left parenthesis', DeepL translation) - - "⁾": [t: "feliratos jobb oldali zárójel"] # 0x207e (en: 'superscript right parenthesis', DeepL translation) - - "ⁿ": [t: "a legnagyobb erővel"] # 0x207f (en: 'to the ennth power', DeepL translation) - - "₀": [t: "sub nulla"] # 0x2080 (en: 'sub zero', DeepL translation) - - "₁": [t: "egyes alosztály"] # 0x2081 (en: 'sub one', DeepL translation) - - "₂": [t: "sub kettő"] # 0x2082 (en: 'sub two', DeepL translation) - - "₃": [t: "sub három"] # 0x2083 (en: 'sub three', DeepL translation) - - "₄": [t: "alnégyes"] # 0x2084 (en: 'sub four', DeepL translation) - - "₅": [t: "sub five"] # 0x2085 (DeepL translation) - - "₆": [t: "sub hat"] # 0x2086 (en: 'sub six', DeepL translation) - - "₇": [t: "sub seven"] # 0x2087 (DeepL translation) - - "₈": [t: "sub at"] # 0x2088 (en: 'sub eight', DeepL translation) - - "₉": [t: "sub nine"] # 0x2089 (DeepL translation) - - "₊": [t: "alulírott plusz jel"] # 0x208a (en: 'subscript plus sign', DeepL translation) - - "₋": [t: "alárendelő mínusz jel"] # 0x208b (en: 'subscript minus sign', DeepL translation) - - "₌": [t: "indexált egyenlőségjel"] # 0x208c (en: 'subscript equals sign', DeepL translation) - - "₍": [t: "index balra zárójelben"] # 0x208d (en: 'subscript left parenthesis', DeepL translation) - - "₎": [t: "subscript jobb oldali zárójel"] # 0x208e (en: 'subscript right parenthesis', DeepL translation) - - "ₐ": [t: "a. al"] # 0x2090 (en: 'sub A', DeepL translation) - - "ₑ": [t: "sub e"] # 0x2091 (en: 'sub E', DeepL translation) - - "ₒ": [t: "sub o"] # 0x2092 (en: 'sub O', DeepL translation) - - "ₓ": [t: "sub x"] # 0x2093 (en: 'sub X', DeepL translation) - - "ₕ": [t: "h részhalmaz"] # 0x2095 (en: 'sub H', DeepL translation) - - "ₖ": [t: "sub k"] # 0x2096 (en: 'sub K', DeepL translation) - - "ₗ": [t: "alul l"] # 0x2097 (en: 'sub L', DeepL translation) - - "ₘ": [t: "sub m"] # 0x2098 (en: 'sub M', DeepL translation) - - "ₙ": [t: "n alatti n"] # 0x2099 (en: 'sub N', DeepL translation) - - "ₚ": [t: "sub p"] # 0x209a (en: 'sub P', DeepL translation) - - "ₛ": [t: "sub s"] # 0x209b (en: 'sub S', DeepL translation) - - "ₜ": [t: "sub t"] # 0x209c (en: 'sub T', DeepL translation) - - "₠": [t: "európai áramegységek"] # 0x20a0 (en: 'european currenty units', DeepL translation) - - "₡": [t: "kettőspontok"] # 0x20a1 (en: 'colons', DeepL translation) - - "₢": [t: "cruzeiro"] # 0x20a2 (DeepL translation) - - "₣": [t: "frank"] # 0x20a3 (en: 'franc', DeepL translation) - - "₤": [t: "líra"] # 0x20a4 (en: 'lira', DeepL translation) - - "₥": [t: "malmok"] # 0x20a5 (en: 'mills', DeepL translation) - - "₦": [t: "naira"] # 0x20a6 (DeepL translation) - - "₧": [t: "peseta"] # 0x20a7 (DeepL translation) - - "₨": [t: "rúpiák"] # 0x20a8 (en: 'rupees', DeepL translation) - - "₩": [t: "nyert"] # 0x20a9 (en: 'won', DeepL translation) - - "₪": [t: "új sheqel"] # 0x20aa (en: 'new sheqels', DeepL translation) - - "₫": [t: "dong"] # 0x20ab (DeepL translation) - - "€": [t: "euró"] # 0x20ac (en: 'euros', DeepL translation) - - "₭": [t: "kip"] # 0x20ad (DeepL translation) - - "₮": [t: "tugrik"] # 0x20ae (DeepL translation) - - "₯": [t: "drachma"] # 0x20af (DeepL translation) - - "₰": [t: "német fillér"] # 0x20b0 (en: 'german pennies', DeepL translation) - - "₱": [t: "peso"] # 0x20b1 (en: 'pesos', DeepL translation) - - "₲": [t: "guaranis"] # 0x20b2 (DeepL translation) - - "₳": [t: "ausztrálok"] # 0x20b3 (en: 'australs', DeepL translation) - - "₴": [t: "hrivnyák"] # 0x20b4 (en: 'hryvnias', DeepL translation) - - "₵": [t: "cedi"] # 0x20b5 (en: 'cedis', DeepL translation) - - "₶": [t: "livre tournois"] # 0x20b6 (DeepL translation) - - "₷": [t: "spesmilos"] # 0x20b7 (DeepL translation) - - "₸": [t: "tenges"] # 0x20b8 (DeepL translation) - - "₹": [t: "indiai rúpia"] # 0x20b9 (en: 'indian rupees', DeepL translation) - - "₺": [t: "török líra"] # 0x20ba (en: 'turkish liras', DeepL translation) - - "⃐": [t: "bal szigony felett díszítés"] # 0x20d0 (en: 'left harpoon above embellishment', DeepL translation) - - "⃑": [t: "jobb szigony a díszítés felett"] # 0x20d1 (en: 'right harpoon above embellishment', DeepL translation) - - "⃒": [t: "hosszú függőleges vonal feletti díszítés"] # 0x20d2 (en: 'long vertical line overlay embellishment', DeepL translation) - - "⃓": [t: "rövid függőleges vonallal fedett díszítés"] # 0x20d3 (en: 'short vertical line overlay embellishment', DeepL translation) - - "⃔": [t: "az óramutató járásával ellentétes irányú nyíl a díszítés felett"] # 0x20d4 (en: 'anticlockwise arrow above embellishment', DeepL translation) - - "⃕": [t: "óramutató járásával megegyező irányú nyíl a díszítés felett"] # 0x20d5 (en: 'clockwise arrow above embellishment', DeepL translation) - - "⃖": [t: "bal nyíl a díszítés felett"] # 0x20d6 (en: 'left arrow above embellishment', DeepL translation) - - "⃗": [t: "jobbra nyíl fölött díszítés"] # 0x20d7 (en: 'right arrow above embellishment', DeepL translation) - - "⃘": [t: "gyűrű feletti díszítés"] # 0x20d8 (en: 'ring overlay embellishment', DeepL translation) - - "⃙": [t: "óramutató járásával megegyező gyűrűs feliratú díszítés"] # 0x20d9 (en: 'clockwise ring overlay embellishment', DeepL translation) - - "⃚": [t: "óramutató járásával ellentétes irányú gyűrű feletti díszítés"] # 0x20da (en: 'anticlockwise ring overlay embellishment', DeepL translation) - - "⃛": [t: "hármas pont"] # 0x20db (en: 'triple dot', DeepL translation) - - "⃜": [t: "négyes pont"] # 0x20dc (en: 'quadruple dot', DeepL translation) - - "⃝": [t: "bezáró kör díszítés"] # 0x20dd (en: 'enclosing circle embellishment', DeepL translation) - - "⃞": [t: "záró négyzet alakú díszítés"] # 0x20de (en: 'enclosing square embellishment', DeepL translation) - - "⃟": [t: "zárt gyémánt díszítés"] # 0x20df (en: 'enclosing diamond embellishment', DeepL translation) - - "⃠": [t: "bezáró kör visszafelé irányuló díszítés"] # 0x20e0 (en: 'enclosing circle backslash embellishment', DeepL translation) - - "⃡": [t: "balra jobbra nyíl a díszítés felett"] # 0x20e1 (en: 'left right arrow above embellishment', DeepL translation) - - "⃢": [t: "körülzáró képernyő díszítés"] # 0x20e2 (en: 'enclosing screen embellishment', DeepL translation) - - "⃣": [t: "zárt kulcsosházas díszítés"] # 0x20e3 (en: 'enclosing keycap embellishment', DeepL translation) - - "⃤": [t: "zárt felfelé mutató háromszög díszítés"] # 0x20e4 (en: 'enclosing upward pointing triangle embellishment', DeepL translation) - - "⃥": [t: "fordított solidus feletti díszítés"] # 0x20e5 (en: 'reverse solidus overlay embellishment', DeepL translation) - - "⃦": [t: "kettős függőleges vonás díszítés"] # 0x20e6 (en: 'double verticle stroke embellishment', DeepL translation) - - "⃧": [t: "járadékszimbólum díszítés"] # 0x20e7 (en: 'annuity symbol embellishment', DeepL translation) - - "⃨": [t: "háromszoros aláhúzás"] # 0x20e8 (en: 'triple underdot', DeepL translation) - - "⃩": [t: "széles híd a díszítés felett"] # 0x20e9 (en: 'wide bridge above embellishment', DeepL translation) - - "⃪": [t: "bal nyíl feletti díszítés"] # 0x20ea (en: 'left arrow overlay embellishment', DeepL translation) - - "⃫": [t: "hosszú kettős szolidus feliratú feliratos díszítés"] # 0x20eb (en: 'long double solidus overlay embellishment', DeepL translation) - - "⃬": [t: "jobb szigony lefelé szúrós díszítéssel"] # 0x20ec (en: 'right harpoon with barb down embellishment', DeepL translation) - - "⃭": [t: "bal szigony lefelé szúrós díszítéssel"] # 0x20ed (en: 'left harpoon with barb down embellishment', DeepL translation) - - "⃮": [t: "balra nyíl alatti díszítés"] # 0x20ee (en: 'left arrow below embellishment', DeepL translation) - - "⃯": [t: "jobbra mutató nyíl alatt díszítés"] # 0x20ef (en: 'right arrow below embellishment', DeepL translation) - - "⃰": [t: "csillag a díszítés felett"] # 0x20f0 (en: 'asterisk above embellishment', DeepL translation) - - "℄": [t: "középvonal szimbólum"] # 0x2104 (en: 'center line symbol', DeepL translation) - - "℅": [t: "care of"] # 0x2105 (DeepL translation) - - "℆": [t: "cada una"] # 0x2106 (DeepL translation) - - "ℇ": [t: "euler-állandó"] # 0x2107 (en: 'euler's constant', DeepL translation) - - "℈": [t: "skrupulusok"] # 0x2108 (en: 'scruples', DeepL translation) - - "ℊ": [t: "írás g"] # 0x210a (en: 'script g', DeepL translation) - - "ℌℑℨℭ": # 0x210c, 0x2111, 0x2128, 0x212d - - t: "fraktur" # (DeepL translation) - - spell: "translate('.', 'ℌℑℨℭ', 'HIZC')" - - - "ℍℙℾℿ": # 0x210d, 0x2119, 0x213e, 0x213f - - T: "dupla leütésű" # (en: 'double struck', DeepL translation) - - spell: "translate('.', 'ℍℙℾℿ', 'HPΓΠ')" - - - "ℏ": [t: "h bar"] # 0x210f (DeepL translation) - - - "ℐℒ℘ℬℰℱℳ": # 0x2110, 0x2112, 0x2118, 0x2130, 0x2131, 0x2133 - - t: "script" # (DeepL translation) - - spell: "translate('.', 'ℐℒ℘ℬℰℱℳ', 'ILPBEFM')" - - - "℔": [t: "font"] # 0x2114 (en: 'pounds', DeepL translation) - - "№": [t: "szám"] # 0x2116 (en: 'number', DeepL translation) - - "℥": [t: "unciák"] # 0x2125 (en: 'ounces', DeepL translation) - - "℧": [t: "mhos"] # 0x2127 (DeepL translation) - - "℩": [t: "fordított jota"] # 0x2129 (en: 'turned iota', DeepL translation) - - "ℯ": [t: "írás e"] # 0x212f (en: 'script e', DeepL translation) - - # coalesced some chars that use cap letters - - "Ⅎ℺⅁⅂⅃⅄": # 0x2132, 0x213a, 0x2141, 0x2142, 0x2143, 0x2144 - - test: - - if: "'.' = '℺'" - then: [t: "forgatott"] # (en: 'rotated', DeepL translation) - - else_if: "'.' = 'Ⅎ'" - then: [T: "fordított"] # (en: 'turned', DeepL translation) - - else_if: "'.' = '⅃'" - then: [T: "fordított talpatlan"] # (en: 'reversed sans-serif', DeepL translation) - else: [T: "fordított talpatlan"] # (en: 'turned sans-serif', DeepL translation) - - spell: "translate('.', 'Ⅎ℺⅁⅂⅃⅄', 'FQGLLY')" - - - "ℴ": [t: "írás o"] # 0x2134 (en: 'script o', DeepL translation) - - "ℵ": [t: "első transzfinit kardinális"] # 0x2135 (en: 'first transfinite cardinal', DeepL translation) - - "ℶ": [t: "második transzfinit kardinális"] # 0x2136 (en: 'second transfinite cardinal', DeepL translation) - - "ℷ": [t: "harmadik transzfinit kardinális"] # 0x2137 (en: 'third transfinite cardinal', DeepL translation) - - "ℸ": [t: "negyedik transzfinit kardinális"] # 0x2138 (en: 'fourth transfinite cardinal', DeepL translation) - - "ℼ": [t: "dupla leütött pi"] # 0x213c (en: 'double struck pi', DeepL translation) - - "ℽ": [t: "dupla csapott gamma"] # 0x213d (en: 'double struck gamma', DeepL translation) - - "⅀": [t: "kettős leütött n-es összegzés"] # 0x2140 (en: 'double struck n-ary summation', DeepL translation) - - "⅋": [t: "fordított erősítőjel"] # 0x214b (en: 'turned ampersand', DeepL translation) - - "⅌": [t: "per"] # 0x214c (DeepL translation) - - "ⅎ": [t: "fordított f"] # 0x214e (en: 'turned F', DeepL translation) - - "¼": [t: "egy negyed"] # 0x00bc (en: 'one quarter', DeepL translation) - - "½": [t: "egy fél"] # 0x00bd (en: 'one half', DeepL translation) - - "¾": [t: "háromnegyedes zárójel"] # 0x00be (en: 'three quarters', DeepL translation) - - "⅐": [t: "egy hetedik"] # 0x2150 (en: 'one seventh', DeepL translation) - - "⅑": [t: "egy kilencedik"] # 0x2151 (en: 'one ninth', DeepL translation) - - "⅒": [t: "egy tized"] # 0x2152 (en: 'one tenth', DeepL translation) - - "⅓": [t: "egyharmad"] # 0x2153 (en: 'one third', DeepL translation) - - "⅔": [t: "két harmad"] # 0x2154 (en: 'two thirds', DeepL translation) - - "⅕": [t: "egy ötödik"] # 0x2155 (en: 'one fifth', DeepL translation) - - "⅖": [t: "két ötöd"] # 0x2156 (en: 'two fifths', DeepL translation) - - "⅗": [t: "három ötödik"] # 0x2157 (en: 'three fifths', DeepL translation) - - "⅘": [t: "négy ötöd"] # 0x2158 (en: 'four fifths', DeepL translation) - - "⅙": [t: "egy hatod"] # 0x2159 (en: 'one sixth', DeepL translation) - - "⅚": [t: "öt hatod"] # 0x215a (en: 'five sixths', DeepL translation) - - "⅛": [t: "egy ath"] # 0x215b (en: 'one eighth', DeepL translation) - - "⅜": [t: "három aths"] # 0x215c (en: 'three eighths', DeepL translation) - - "⅝": [t: "öt at"] # 0x215d (en: 'five eighths', DeepL translation) - - "⅞": [t: "hét atlasz"] # 0x215e (en: 'seven eighths', DeepL translation) - - "⅟": [t: "egy fölött"] # 0x215f (en: 'one over', DeepL translation) - - "Ⅰ": [t: "Ⅰ"] # 0x2160 (en: 'I', DeepL translation) - - "Ⅱ": [t: "i i"] # 0x2161 (en: 'I I', DeepL translation) - - "Ⅲ": [t: "i i i i"] # 0x2162 (en: 'I I I', DeepL translation) - - "Ⅳ": [t: "i v"] # 0x2163 (en: 'I V', DeepL translation) - - "Ⅴ": [t: "Ⅴ"] # 0x2164 (en: 'V', DeepL translation) - - "Ⅵ": [t: "v i"] # 0x2165 (en: 'V I', DeepL translation) - - "Ⅶ": [t: "v i i"] # 0x2166 (en: 'V I I', DeepL translation) - - "Ⅷ": [t: "v i i i i"] # 0x2167 (en: 'V I I I', DeepL translation) - - "Ⅸ": [t: "i x"] # 0x2168 (en: 'I X', DeepL translation) - - "Ⅹ": [t: "Ⅹ"] # 0x2169 (en: 'X', DeepL translation) - - "Ⅺ": [t: "x i"] # 0x216a (en: 'X I', DeepL translation) - - "Ⅻ": [t: "x i i"] # 0x216b (en: 'X I I', DeepL translation) - - "Ⅼ": [t: "Ⅼ"] # 0x216c (en: 'L', DeepL translation) - - "Ⅽ": [t: "Ⅽ"] # 0x216d (en: 'C', DeepL translation) - - "Ⅾ": [t: "Ⅾ"] # 0x216e (en: 'D', DeepL translation) - - "Ⅿ": [t: "Ⅿ"] # 0x216f (en: 'M', DeepL translation) - - "ⅰ": [t: "ⅰ"] # 0x2170 (en: 'I', DeepL translation) - - "ⅱ": [t: "i i"] # 0x2171 (en: 'I I', DeepL translation) - - "ⅲ": [t: "i i i i"] # 0x2172 (en: 'I I I', DeepL translation) - - "ⅳ": [t: "i v"] # 0x2173 (en: 'I V', DeepL translation) - - "ⅴ": [t: "ⅴ"] # 0x2174 (en: 'V', DeepL translation) - - "ⅵ": [t: "v i"] # 0x2175 (en: 'V I', DeepL translation) - - "ⅶ": [t: "v i i"] # 0x2176 (en: 'V I I', DeepL translation) - - "ⅷ": [t: "v i i i i"] # 0x2177 (en: 'V I I I', DeepL translation) - - "ⅸ": [t: "i x"] # 0x2178 (en: 'I X', DeepL translation) - - "ⅹ": [t: "ⅹ"] # 0x2179 (en: 'X', DeepL translation) - - "ⅺ": [t: "x i"] # 0x217a (en: 'X I', DeepL translation) - - "ⅻ": [t: "x i i"] # 0x217b (en: 'X I I', DeepL translation) - - "ⅼ": [t: "ⅼ"] # 0x217c (en: 'L', DeepL translation) - - "ⅽ": [t: "ⅽ"] # 0x217d (en: 'C', DeepL translation) - - "ⅾ": [t: "ⅾ"] # 0x217e (en: 'D', DeepL translation) - - "ⅿ": [t: "ⅿ"] # 0x217f (en: 'M', DeepL translation) - - "↉": [t: "nulla harmadok"] # 0x2189 (en: 'zero thirds', DeepL translation) - - "↔": [t: "balra jobbra nyíl"] # 0x2194 (en: 'left right arrow', DeepL translation) - - "↕": [t: "felfelé lefelé mutató nyíl"] # 0x2195 (en: 'up down arrow', DeepL translation) - - "↖": [t: "északnyugati nyíl"] # 0x2196 (en: 'north west arrow', DeepL translation) - - "↗": # 0x2197 - - test: - if: "ancestor::*[2][self::m:limit]" - then: [t: "alulról közelít"] # (en: 'approaches from below', DeepL translation) - else: [t: "északkeleti nyíl"] # (en: 'north east arrow', DeepL translation) - - - "↘": # 0x2198 - - test: - if: "ancestor::*[2][self::m:limit]" - then: [t: "felülről közelít"] # (en: 'approaches from above', DeepL translation) - else: [t: "délkeleti nyíl"] # (en: 'south east arrow', DeepL translation) - - - "↙": [t: "délnyugati nyíl"] # 0x2199 (en: 'south west arrow', DeepL translation) - - "↚": [t: "balra nyíl vonallal"] # 0x219a (en: 'left arrow with stroke', DeepL translation) - - "↛": [t: "jobbra mutató nyíl vonallal"] # 0x219b (en: 'right arrow with stroke', DeepL translation) - - "↜": [t: "bal oldali hullámos nyíl"] # 0x219c (en: 'left wave arrow', DeepL translation) - - "↝": [t: "jobb oldali hullámos nyíl"] # 0x219d (en: 'right wave arrow', DeepL translation) - - "↞": [t: "bal kétfejű nyíl"] # 0x219e (en: 'left two headed arrow', DeepL translation) - - "↟": [t: "felfelé kétfejű nyíl"] # 0x219f (en: 'up two headed arrow', DeepL translation) - - "↠": [t: "jobb kétfejű nyíl"] # 0x21a0 (en: 'right two headed arrow', DeepL translation) - - "↡": [t: "lefelé kétfejű nyíl"] # 0x21a1 (en: 'down two headed arrow', DeepL translation) - - "↢": [t: "balra mutató nyíl farokkal"] # 0x21a2 (en: 'left arrow with tail', DeepL translation) - - "↣": [t: "jobbra mutató nyíl farokkal"] # 0x21a3 (en: 'right arrow with tail', DeepL translation) - - "↤": [t: "bal nyíl a sávból"] # 0x21a4 (en: 'left arrow from bar', DeepL translation) - - "↥": [t: "felfelé mutató nyíl vonaltól"] # 0x21a5 (en: 'up arrow from bar', DeepL translation) - - "↦": [t: "jobbra mutató nyíl a sávból"] # 0x21a6 (en: 'right arrow from bar', DeepL translation) - - "↧": [t: "lefelé mutató nyíl a sávból"] # 0x21a7 (en: 'down arrow from bar', DeepL translation) - - "↨": [t: "fel-le nyíl alappal"] # 0x21a8 (en: 'up down arrow with base', DeepL translation) - - "↩": [t: "bal nyíl horoggal"] # 0x21a9 (en: 'left arrow with hook', DeepL translation) - - "↪": [t: "jobbra mutató nyíl horoggal"] # 0x21aa (en: 'right arrow with hook', DeepL translation) - - "↫": [t: "bal nyíl hurokkal"] # 0x21ab (en: 'left arrow with loop', DeepL translation) - - "↬": [t: "jobbra mutató nyíl hurokkal"] # 0x21ac (en: 'right arrow with loop', DeepL translation) - - "↭": [t: "balra jobbra hullámzó nyíl"] # 0x21ad (en: 'left right wave arrow', DeepL translation) - - "↮": [t: "balra jobbra nyíl függőleges vonallal"] # 0x21ae (en: 'left right arrow with stroke', DeepL translation) - - "↯": [t: "lefelé cikkcakkos nyíl"] # 0x21af (en: 'down zigzag arrow', DeepL translation) - - "↰": [t: "felfelé mutató nyíl hegyével balra"] # 0x21b0 (en: 'up arrow with tip left', DeepL translation) - - "↱": [t: "felfelé mutató nyíl jobbra mutató hegyével"] # 0x21b1 (en: 'up arrow with tip right', DeepL translation) - - "↲": [t: "lefelé mutató nyíl bal csúccsal"] # 0x21b2 (en: 'down arrow with tip left', DeepL translation) - - "↳": [t: "lefelé mutató nyíl hegyével jobbra"] # 0x21b3 (en: 'down arrow with tip right', DeepL translation) - - "↴": [t: "jobbra nyíl sarokkal lefelé"] # 0x21b4 (en: 'right arrow with corner down', DeepL translation) - - "↵": [t: "lefelé mutató nyíl bal oldali sarokkal"] # 0x21b5 (en: 'down arrow with corner left', DeepL translation) - - "↶": [t: "az óramutató járásával ellentétes irányú felső félköríves nyíl"] # 0x21b6 (en: 'anticlockwise top semicircle arrow', DeepL translation) - - "↷": [t: "óramutató járásával megegyezően felső félköríves nyíl"] # 0x21b7 (en: 'clockwise top semicircle arrow', DeepL translation) - - "↸": [t: "északnyugati nyíl a hosszú sávra"] # 0x21b8 (en: 'north west arrow to long bar', DeepL translation) - - "↹": [t: "bal nyíl a sáv fölé jobb nyíl a sáv fölé"] # 0x21b9 (en: 'left arrow to bar over right arrow to bar', DeepL translation) - - "↺": [t: "az óramutató járásával ellentétes irányban nyitott kör alakú nyíl"] # 0x21ba (en: 'anticlockwise open circle arrow', DeepL translation) - - "↻": [t: "az óramutató járásával megegyező irányban nyitott kör nyíl"] # 0x21bb (en: 'clockwise open circle arrow', DeepL translation) - - "↼": [t: "bal oldali szigony felfelé"] # 0x21bc (en: 'left harpoon up', DeepL translation) - - "↽": [t: "bal szigony lefelé"] # 0x21bd (en: 'left harpoon down', DeepL translation) - - "↾": [t: "felfelé szigony jobbra"] # 0x21be (en: 'up harpoon right', DeepL translation) - - "↿": [t: "fel szigony balra"] # 0x21bf (en: 'up harpoon left', DeepL translation) - - "⇀": [t: "jobb szigony felfelé"] # 0x21c0 (en: 'right harpoon up', DeepL translation) - - "⇁": [t: "jobb szigony lefelé"] # 0x21c1 (en: 'right harpoon down', DeepL translation) - - "⇂": [t: "lefelé szigony jobbra"] # 0x21c2 (en: 'down harpoon right', DeepL translation) - - "⇃": [t: "lefelé mutató szigony balra"] # 0x21c3 (en: 'down harpoon left', DeepL translation) - - "⇄": [t: "jobb nyíl bal nyíl fölött"] # 0x21c4 (en: 'right arrow over left arrow', DeepL translation) - - "⇅": [t: "felfelé nyíl balra a lefelé nyílból"] # 0x21c5 (en: 'up arrow left of down arrow', DeepL translation) - - "⇆": [t: "bal nyíl jobb nyíl felett"] # 0x21c6 (en: 'left arrow over right arrow', DeepL translation) - - "⇇": [t: "bal párosított nyilak"] # 0x21c7 (en: 'left paired arrows', DeepL translation) - - "⇈": [t: "felfelé párosított nyilak"] # 0x21c8 (en: 'up paired arrows', DeepL translation) - - "⇉": [t: "jobb oldali párosított nyilak"] # 0x21c9 (en: 'right paired arrows', DeepL translation) - - "⇊": [t: "lefelé párosított nyilak"] # 0x21ca (en: 'down paired arrows', DeepL translation) - - "⇋": [t: "bal szigony a jobb szigony felett"] # 0x21cb (en: 'left harpoon over right harpoon', DeepL translation) - - "⇌": [t: "jobb szigony a bal szigony felett"] # 0x21cc (en: 'right harpoon over left harpoon', DeepL translation) - - "⇍": [t: "bal kettős nyíl függőleges vonallal"] # 0x21cd (en: 'left double arrow with stroke', DeepL translation) - - "⇎": [t: "balra jobbra dupla nyíl függőleges vonallal"] # 0x21ce (en: 'left right double arrow with stroke', DeepL translation) - - "⇏": [t: "jobb oldali kettős nyíl vonallal"] # 0x21cf (en: 'right double arrow with stroke', DeepL translation) - - "⇐": [t: "bal dupla nyíl"] # 0x21d0 (en: 'left double arrow', DeepL translation) - - "⇑": [t: "felfelé mutató kettős nyíl"] # 0x21d1 (en: 'up double arrow', DeepL translation) - - "⇓": [t: "lefelé dupla nyíl"] # 0x21d3 (en: 'down double arrow', DeepL translation) - - "⇔": [t: "ha és csak ha"] # 0x21d4 (en: 'if and only if', DeepL translation) - - "⇕": [t: "fel le dupla nyíl"] # 0x21d5 (en: 'up down double arrow', DeepL translation) - - "⇖": [t: "északnyugat kettős nyíl"] # 0x21d6 (en: 'north west double arrow', DeepL translation) - - "⇗": [t: "északkelet kettős nyíl"] # 0x21d7 (en: 'north east double arrow', DeepL translation) - - "⇘": [t: "délkeleti kettős nyíl"] # 0x21d8 (en: 'south east double arrow', DeepL translation) - - "⇙": [t: "délnyugati kettős nyíl"] # 0x21d9 (en: 'south west double arrow', DeepL translation) - - "⇚": [t: "bal hármas nyíl"] # 0x21da (en: 'left triple arrow', DeepL translation) - - "⇛": [t: "jobbra mutató hármas nyíl"] # 0x21db (en: 'right triple arrow', DeepL translation) - - "⇜": [t: "bal szögletes nyíl"] # 0x21dc (en: 'left squiggle arrow', DeepL translation) - - "⇝": [t: "jobb oldali szögletes nyíl"] # 0x21dd (en: 'right squiggle arrow', DeepL translation) - - "⇞": [t: "felfelé mutató nyíl dupla vonallal"] # 0x21de (en: 'up arrow with double stroke', DeepL translation) - - "⇟": [t: "lefelé nyíl dupla vonallal"] # 0x21df (en: 'down arrow with double stroke', DeepL translation) - - "⇠": [t: "balra szaggatott nyíl"] # 0x21e0 (en: 'left dashed arrow', DeepL translation) - - "⇡": [t: "felfelé szaggatott nyíl"] # 0x21e1 (en: 'up dashed arrow', DeepL translation) - - "⇢": [t: "jobbra szaggatott nyíl"] # 0x21e2 (en: 'right dashed arrow', DeepL translation) - - "⇣": [t: "lefelé szaggatott nyíl"] # 0x21e3 (en: 'down dashed arrow', DeepL translation) - - "⇤": [t: "balra mutató nyíl a sávhoz"] # 0x21e4 (en: 'left arrow to bar', DeepL translation) - - "⇥": [t: "jobbra nyíl a sávra"] # 0x21e5 (en: 'right arrow to bar', DeepL translation) - - "⇦": [t: "bal fehér nyíl"] # 0x21e6 (en: 'left white arrow', DeepL translation) - - "⇧": [t: "felfelé mutató fehér nyíl"] # 0x21e7 (en: 'up white arrow', DeepL translation) - - "⇨": [t: "jobb oldali fehér nyíl"] # 0x21e8 (en: 'right white arrow', DeepL translation) - - "⇩": [t: "lefelé mutató fehér nyíl"] # 0x21e9 (en: 'down white arrow', DeepL translation) - - "⇪": [t: "felfelé fehér nyíl a sávból"] # 0x21ea (en: 'up white arrow from bar', DeepL translation) - - "⇫": [t: "felfelé mutató fehér nyíl a talapzaton"] # 0x21eb (en: 'up white arrow on pedestal', DeepL translation) - - "⇬": [t: "felfelé mutató fehér nyíl talapzaton vízszintes sávval"] # 0x21ec (en: 'up white arrow on pedestal with horizontal bar', DeepL translation) - - "⇭": [t: "felfelé mutató fehér nyíl talapzaton függőleges sávval"] # 0x21ed (en: 'up white arrow on pedestal with vertical bar', DeepL translation) - - "⇮": [t: "felfelé fehér kettős nyíl"] # 0x21ee (en: 'up white double arrow', DeepL translation) - - "⇯": [t: "felfelé fehér kettős nyíl talapzaton"] # 0x21ef (en: 'up white double arrow on pedestal', DeepL translation) - - "⇰": [t: "jobb oldali fehér nyíl a falról"] # 0x21f0 (en: 'right white arrow from wall', DeepL translation) - - "⇱": [t: "északnyugati nyíl a sarokba"] # 0x21f1 (en: 'north west arrow to corner', DeepL translation) - - "⇲": [t: "délkeleti nyíl a sarokba"] # 0x21f2 (en: 'south east arrow to corner', DeepL translation) - - "⇳": [t: "fel lefelé fehér nyíl"] # 0x21f3 (en: 'up down white arrow', DeepL translation) - - "⇴": [t: "jobbra mutató nyíl kis körrel"] # 0x21f4 (en: 'right arrow with small circle', DeepL translation) - - "⇵": [t: "lefelé mutató nyíl balra a felfelé mutató nyílból"] # 0x21f5 (en: 'down arrow left of up arrow', DeepL translation) - - "⇶": [t: "három jobbra mutató nyíl"] # 0x21f6 (en: 'three right arrows', DeepL translation) - - "⇷": [t: "bal nyíl függőleges vonallal"] # 0x21f7 (en: 'left arrow with vertical stroke', DeepL translation) - - "⇸": [t: "jobb oldali nyíl függőleges vonallal"] # 0x21f8 (en: 'right arrow with vertical stroke', DeepL translation) - - "⇹": [t: "balra jobbra nyíl függőleges vonallal"] # 0x21f9 (en: 'left right arrow with vertical stroke', DeepL translation) - - "⇺": [t: "bal nyíl dupla függőleges vonallal"] # 0x21fa (en: 'left arrow with double vertical stroke', DeepL translation) - - "⇻": [t: "jobb nyíl dupla függőleges vonallal"] # 0x21fb (en: 'right arrow with double vertical stroke', DeepL translation) - - "⇼": [t: "bal jobb nyíl dupla függőleges vonallal"] # 0x21fc (en: 'left right arrow with double vertical stroke', DeepL translation) - - "⇽": [t: "bal nyitott fejű nyíl"] # 0x21fd (en: 'left open headed arrow', DeepL translation) - - "⇾": [t: "jobbra nyitott fejű nyíl"] # 0x21fe (en: 'right open headed arrow', DeepL translation) - - "⇿": [t: "bal jobb nyitott fejű nyílvessző"] # 0x21ff (en: 'left right open headed arrow', DeepL translation) - - "∁": # 0x2201 - - test: - if: "$Verbosity!='Terse'" - then: [t: "a"] # (en: 'the', DeepL translation) - - t: "kiegészítése" # (en: 'complement of', DeepL translation) - - "∇": [t: "nahblah"] # 0x2207 (DeepL translation) - - "∋": [t: "tartalmazza a tagot"] # 0x220b (en: 'contains the member', DeepL translation) - - "∌": [t: "nem tartalmazza a tagot"] # 0x220c (en: 'does not contain the member', DeepL translation) - - "∍": [t: "tartalmazza a tagot"] # 0x220d (en: 'contains the member', DeepL translation) - - "∎": [t: "a bizonyítás vége"] # 0x220e (en: 'end of proof', DeepL translation) - - "∔": [t: "pont plusz"] # 0x2214 (en: 'dot plus', DeepL translation) - - "∕": [t: "osztva"] # 0x2215 (en: 'divided by', DeepL translation) - - "∖": [t: "beállított mínusz"] # 0x2216 (en: 'set minus', DeepL translation) - - "∙": # 0x2219 - - test: - if: "@data-chem-formula-op" - then: [t: "pont"] # (en: 'dot', DeepL translation) - else: [t: "idők"] # (en: 'times', DeepL translation) - - - "∛": # 0x221b - - test: - if: "$Verbosity!='Terse'" - then: [t: "a"] # (en: 'the', DeepL translation) - - t: "kockagyökér" # (en: 'cube root of', DeepL translation) - - "∜": # 0x221c - - test: - if: "$Verbosity!='Terse'" - then: [t: "a"] # (en: 'the', DeepL translation) - - t: "negyedik gyöke" # (en: 'fourth root of', DeepL translation) - - "∢": [t: "gömbszög"] # 0x2222 (en: 'spherical angle', DeepL translation) - - "∯": [t: "felszíni integrál"] # 0x222f (en: 'surface integral', DeepL translation) - - "∰": [t: "térfogati integrál"] # 0x2230 (en: 'volume integral', DeepL translation) - - "∱": [t: "az óramutató járásával megegyezően integrált"] # 0x2231 (en: 'clockwise integral', DeepL translation) - - "∲": [t: "az óramutató járásával megegyező irányú kontúrintegrál"] # 0x2232 (en: 'clockwise contour integral', DeepL translation) - - "∳": [t: "az óramutató járásával ellentétes irányú kontúrintegrál"] # 0x2233 (en: 'anticlockwise contour integral', DeepL translation) - - "∴": [t: "ezért"] # 0x2234 (en: 'therefore', DeepL translation) - - "∵": [t: "mert"] # 0x2235 (en: 'because', DeepL translation) - - "∸": [t: "pont mínusz"] # 0x2238 (en: 'dot minus', DeepL translation) - - "∹": [t: "többlet van a többlethez képest"] # 0x2239 (en: 'has excess compared to', DeepL translation) - - "∺": # 0x223a - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "geometriailag arányos" # (en: 'geometrically proportional to', DeepL translation) - - "∻": # 0x223b - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "homotetikus a" # (en: 'homothetic to', DeepL translation) - - "≀": [t: "koszorú termék"] # 0x2240 (en: 'wreath product', DeepL translation) - - "≁": [t: "nem tilde"] # 0x2241 (en: 'not tilde', DeepL translation) - - "≂": [t: "mínusz tilde"] # 0x2242 (en: 'minus tilde', DeepL translation) - - "≃": # 0x2243 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "aszimptotikusan egyenlő" # (en: 'asymptotically equal to', DeepL translation) - - "≄": # 0x2244 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nem aszimptotikusan egyenlő" # (en: 'not asymptotically equal to', DeepL translation) - - "≅": # 0x2245 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "kongruens a" # (en: 'congruent to', DeepL translation) - - "≆": # 0x2246 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "megközelítőleg, de valójában nem egyenlő" # (en: 'approximately but not actually equal to', DeepL translation) - - "≇": # 0x2247 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nem kongruens" # (en: 'not congruent to', DeepL translation) - - "≈": # 0x2248 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "megközelítőleg egyenlő" # (en: 'approximately equal to', DeepL translation) - - "≉": # 0x2249 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nem megközelítőleg egyenlő" # (en: 'not approximately equal to', DeepL translation) - - "≊": # 0x224a - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "megközelítőleg egyenlő vagy egyenlő" # (en: 'approximately equal or equal to', DeepL translation) - - "≋": [t: "hármas tilde"] # 0x224b (en: 'triple tilde', DeepL translation) - - "≌": [t: "mind egyenlőek"] # 0x224c (en: 'are all equal to', DeepL translation) - - "≍": # 0x224d - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "egyenértékű" # (en: 'equivalent to', DeepL translation) - - "≎": # 0x224e - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "geometriailag egyenértékű" # (en: 'geometrically equivalent to', DeepL translation) - - "≏": # 0x224f - - test: - if: "$Verbosity!='Terse'" - then: [t: "a"] # (en: 'the', DeepL translation) - - t: "különbség" # (en: 'difference between', DeepL translation) - - "≐": [t: "közelít a határhoz"] # 0x2250 (en: 'approaches the limit', DeepL translation) - - "≑": # 0x2251 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "geometriailag egyenlő" # (en: 'geometrically equal to', DeepL translation) - - "≒": # 0x2252 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "megközelítőleg egyenlő vagy a képe" # (en: 'approximately equal to or the image of', DeepL translation) - - "≓": # 0x2253 - - test: - if: "$Verbosity!='Terse'" - then: [t: "a"] # (en: 'is the', DeepL translation) - - t: "képe vagy megközelítőleg egyenlő" # (en: 'image of or approximately equal to', DeepL translation) - - "≔": [t: "kettőspont egyenlő"] # 0x2254 (en: 'colon equals', DeepL translation) - - "≕": [t: "egyenlőségjel kettőspont"] # 0x2255 (en: 'equals colon', DeepL translation) - - "≖": [t: "gyűrűvel egyenlő"] # 0x2256 (en: 'ring in equal to', DeepL translation) - - "≗": # 0x2257 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "megközelítőleg egyenlő" # (en: 'approximately equal to', DeepL translation) - - "≘": [t: "megfelel"] # 0x2258 (en: 'corresponds to', DeepL translation) - - "≙": [t: "becslések"] # 0x2259 (en: 'estimates', DeepL translation) - - "≚": # 0x225a - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "egyenlőségjel" # (en: 'equiangular to', DeepL translation) - - "≛": [t: "csillag egyenlő"] # 0x225b (en: 'star equals', DeepL translation) - - "≜": [t: "delta egyenlő"] # 0x225c (en: 'delta equals', DeepL translation) - - "≝": [t: "a következőképpen van definiálva"] # 0x225d (en: 'is defined to be', DeepL translation) - - "≞": # 0x225e - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "mért" # (en: 'measured by', DeepL translation) - - "≟": [t: "ismeretlen kapcsolatban áll"] # 0x225f (en: 'has an unknown relationship with', DeepL translation) - - "≢": # 0x2262 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nem azonos" # (en: 'not identical to', DeepL translation) - - "≣": # 0x2263 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "szigorúan egyenértékű" # (en: 'strictly equivalent to', DeepL translation) - - "≨": # 0x2268 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "kisebb, mint, de nem egyenlő" # (en: 'less than but not equal to', DeepL translation) - - "≩": # 0x2269 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nagyobb, mint, de nem egyenlő" # (en: 'greater than but not equal to', DeepL translation) - - "≪": # 0x226a - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "sokkal kisebb, mint" # (en: 'much less than', DeepL translation) - - "≫": # 0x226b - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "sokkal nagyobb, mint" # (en: 'much greater than', DeepL translation) - - "≬": # 0x226c - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "között" # (en: 'between', DeepL translation) - - "≭": # 0x226d - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nem egyenértékű" # (en: 'not equivalent to', DeepL translation) - - "≮": # 0x226e - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nem kisebb, mint" # (en: 'not less than', DeepL translation) - - "≯": # 0x226f - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nem nagyobb, mint" # (en: 'not greater than', DeepL translation) - - "≰": # 0x2270 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "sem kisebb, mint vagy egyenlő" # (en: 'neither less than nor equal to', DeepL translation) - - "≱": # 0x2271 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "sem nagyobb, sem egyenlő" # (en: 'neither greater than nor equal to', DeepL translation) - - "≲": # 0x2272 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "kevesebb, mint vagy azzal egyenértékű" # (en: 'less than or equivalent to', DeepL translation) - - "≳": # 0x2273 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nagyobb vagy egyenlő, mint" # (en: 'greater than or equivalent to', DeepL translation) - - "≴": # 0x2274 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "sem kisebb, sem egyenlő" # (en: 'neither less than nor equivalent to', DeepL translation) - - "≵": # 0x2275 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "se nem nagyobb, se nem egyenlő" # (en: 'neither greater than nor equivalent to', DeepL translation) - - "≶": # 0x2276 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "kisebb vagy nagyobb, mint" # (en: 'less than or greater than', DeepL translation) - - "≷": # 0x2277 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nagyobb, mint vagy kisebb, mint" # (en: 'greater than or less than', DeepL translation) - - "≸": # 0x2278 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "sem kisebb, sem nagyobb, mint" # (en: 'neither less than nor greater than', DeepL translation) - - "≹": # 0x2279 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "se nem nagyobb, se nem kisebb" # (en: 'neither greater than nor less than', DeepL translation) - - "≼": [t: "megelőzi vagy egyenlő"] # 0x227c (en: 'precedes or is equal to', DeepL translation) - - "≽": [t: "sikerül vagy egyenlő"] # 0x227d (en: 'succeeds or is equal to', DeepL translation) - - "≾": [t: "megelőzi vagy egyenértékű"] # 0x227e (en: 'precedes or is equivalent to', DeepL translation) - - "≿": [t: "sikerül vagy egyenértékű"] # 0x227f (en: 'succeeds or is equivalent to', DeepL translation) - - "⊀": [t: "nem előzi meg"] # 0x2280 (en: 'does not precede', DeepL translation) - - "⊁": [t: "nem sikerül"] # 0x2281 (en: 'does not succeed', DeepL translation) - - "⊈": # 0x2288 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "se nem részhalmaza, se nem egyenlő" # (en: 'neither a subset of nor equal to', DeepL translation) - - "⊉": # 0x2289 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "sem nem szuperhalmaza, sem nem egyenlő" # (en: 'neither a superset of nor equal to', DeepL translation) - - "⊊": [t: "részhalmaza a nem egyenlő"] # 0x228a (en: 'subset of with not equal to', DeepL translation) - - "⊋": [t: "superset of with nem egyenlő"] # 0x228b (en: 'superset of with not equal to', DeepL translation) - - "⊌": [t: "multiset"] # 0x228c (DeepL translation) - - "⊍": [t: "multiset szorzás"] # 0x228d (en: 'multiset multiplication', DeepL translation) - - "⊎": [t: "multiset unió"] # 0x228e (en: 'multiset union', DeepL translation) - - "⊏": [t: "négyzet képe"] # 0x228f (en: 'square image of', DeepL translation) - - "⊐": [t: "négyzet eredeti"] # 0x2290 (en: 'square original of', DeepL translation) - - "⊑": [t: "négyzet képe vagy azzal egyenlő"] # 0x2291 (en: 'square image of or equal to', DeepL translation) - - "⊒": [t: "négyzet eredeti vagy egyenlő"] # 0x2292 (en: 'square original of or equal to', DeepL translation) - - "⊓": [t: "négyzet nagybetűs"] # 0x2293 (en: 'square cap', DeepL translation) - - "⊔": [t: "négyzetes csésze"] # 0x2294 (en: 'square cup', DeepL translation) - - "⊕": [t: "kör alakú plusz"] # 0x2295 (en: 'circled plus', DeepL translation) - - "⊖": [t: "bekarikázott mínusz"] # 0x2296 (en: 'circled minus', DeepL translation) - - "⊗": [t: "bekarikázott idők"] # 0x2297 (en: 'circled times', DeepL translation) - - "⊘": [t: "bekarikázott írásjel"] # 0x2298 (en: 'circled slash', DeepL translation) - - "⊙": [t: "bekarikázott pontoperátor"] # 0x2299 (en: 'circled dot operator', DeepL translation) - - "⊚": [t: "bekarikázott gyűrű"] # 0x229a (en: 'circled ring', DeepL translation) - - "⊛": [t: "bekarikázott csillag"] # 0x229b (en: 'circled asterisk', DeepL translation) - - "⊜": [t: "bekarikázott egyenlőségjel"] # 0x229c (en: 'circled equals', DeepL translation) - - "⊝": [t: "bekarikázott kötőjel"] # 0x229d (en: 'circled dash', DeepL translation) - - "⊞": [t: "négyzet plusz"] # 0x229e (en: 'squared plus', DeepL translation) - - "⊟": [t: "négyzet mínusz"] # 0x229f (en: 'squared minus', DeepL translation) - - "⊠": [t: "négyzetes idő"] # 0x22a0 (en: 'squared times', DeepL translation) - - "⊡": [t: "négyzetes pontoperátor"] # 0x22a1 (en: 'squared dot operator', DeepL translation) - - "⊢": [t: "bizonyítja"] # 0x22a2 (en: 'proves', DeepL translation) - - "⊣": [t: "nem enged"] # 0x22a3 (en: 'does not yield', DeepL translation) - - "⊤": [t: "felső"] # 0x22a4 (en: 'top', DeepL translation) - - "⊥": # 0x22a5 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "alul" # (en: 'bottom', DeepL translation) - - "⊦": [t: "redukálódik"] # 0x22a6 (en: 'reduces to', DeepL translation) - - "⊧": [t: "modellek"] # 0x22a7 (en: 'models', DeepL translation) - - "⊨": # 0x22a8 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "igaz" # (en: 'true', DeepL translation) - - "⊩": [t: "erők"] # 0x22a9 (en: 'forces', DeepL translation) - - "⊪": [t: "háromszoros függőleges sáv jobbra forduló"] # 0x22aa (en: 'triple vertical bar right turnstile', DeepL translation) - - "⊫": [t: "dupla függőleges sáv dupla jobbra forduló csavarkulcs"] # 0x22ab (en: 'double vertical bar double right turnstile', DeepL translation) - - "⊬": [t: "nem bizonyítja"] # 0x22ac (en: 'does not prove', DeepL translation) - - "⊭": # 0x22ad - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nem igaz" # (en: 'not true', DeepL translation) - - "⊮": [t: "nem kényszerít"] # 0x22ae (en: 'does not force', DeepL translation) - - "⊯": [t: "negált kettős függőleges sáv kettős jobbra forduló"] # 0x22af (en: 'negated double vertical bar double right turnstile', DeepL translation) - - "⊰": [t: "előzi meg a reláció alatt"] # 0x22b0 (en: 'precedes under relation', DeepL translation) - - "⊱": [t: "sikerül reláció alatt"] # 0x22b1 (en: 'succeeds under relation', DeepL translation) - - "⊲": # 0x22b2 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "egy normális alcsoportja" # (en: 'a normal subgroup of', DeepL translation) - - "⊳": [t: "tartalmaz, mint normál alcsoport"] # 0x22b3 (en: 'contains as a normal subgroup', DeepL translation) - - "⊴": # 0x22b4 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "normális alcsoportja vagy egyenlő" # (en: 'a normal subgroup of or equal to', DeepL translation) - - "⊵": [t: "tartalmaz, mint normál alcsoport vagy egyenlő"] # 0x22b5 (en: 'contains as a normal subgroup or equal to', DeepL translation) - - "⊶": # 0x22b6 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "az eredeti" # (en: 'the original of', DeepL translation) - - "⊷": # 0x22b7 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "egy kép" # (en: 'an image of', DeepL translation) - - "⊸": [t: "multitérkép"] # 0x22b8 (en: 'multimap', DeepL translation) - - "⊹": [t: "hermitikus konjugált mátrix"] # 0x22b9 (en: 'hermitian conjugate matrix', DeepL translation) - - "⊺": [t: "interkaláció"] # 0x22ba (en: 'intercalate', DeepL translation) - - "⊻": [t: "xor"] # 0x22bb (DeepL translation) - - "⊼": [t: "nand"] # 0x22bc (DeepL translation) - - "⊽": [t: "sem"] # 0x22bd (en: 'nor', DeepL translation) - - "⊾": [t: "derékszög ívvel"] # 0x22be (en: 'right angle with arc', DeepL translation) - - "⊿": [t: "jobb oldali háromszög"] # 0x22bf (en: 'right triangle', DeepL translation) - - "⋀": [t: "logikai és"] # 0x22c0 (en: 'logical and', DeepL translation) - - "⋁": [t: "logikai vagy"] # 0x22c1 (en: 'logical or', DeepL translation) - - "⋂": [t: "kereszteződés"] # 0x22c2 (en: 'intersection', DeepL translation) - - "⋃": [t: "unió"] # 0x22c3 (en: 'union', DeepL translation) - - "⋄": [t: "rombuszos operátor"] # 0x22c4 (en: 'diamond operator', DeepL translation) - - "⋅": # 0x22c5 - - test: - if: "@data-chem-formula-op" - then: [T: "pont"] # (en: 'dot', DeepL translation) - else: [T: "szorozva"] # (en: 'times', DeepL translation) - - - "⋆": [T: "szorozva"] # 0x22c6 (en: 'times', DeepL translation) - - "⋇": [t: "osztás idő"] # 0x22c7 (en: 'division times', DeepL translation) - - "⋈": [t: "masni"] # 0x22c8 (en: 'bowtie', DeepL translation) - - "⋉": # 0x22c9 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "bal oldali normális tényező félközvetett szorzata" # (en: 'the left normal factor semidirect product of', DeepL translation) - - "⋊": # 0x22ca - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "a jobb oldali normális tényező félközvetett szorzata" # (en: 'the right normal factor semidirect product of', DeepL translation) - - "⋋": # 0x22cb - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "bal oldali félközvetett szorzata" # (en: 'the left semidirect product of', DeepL translation) - - "⋌": # 0x22cc - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "a jobb oldali félközvetett szorzata" # (en: 'the right semidirect product of', DeepL translation) - - "⋍": [t: "fordított tilde egyenlő"] # 0x22cd (en: 'reversed tilde equals', DeepL translation) - - "⋎": [t: "görbe logikai vagy"] # 0x22ce (en: 'curly logical or', DeepL translation) - - "⋏": [t: "görbe logikai és"] # 0x22cf (en: 'curly logical and', DeepL translation) - - "⋐": # 0x22d0 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "kettős részhalmaza" # (en: 'a double subset of', DeepL translation) - - "⋑": # 0x22d1 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "egy kettős szuperhalmaza" # (en: 'a double superset of', DeepL translation) - - "⋒": # 0x22d2 - - test: - if: "$Verbosity!='Terse'" - then: [t: "a"] # (en: 'the', DeepL translation) - - t: "kettős metszéspontja" # (en: 'double intersection of', DeepL translation) - - "⋓": # 0x22d3 - - test: - if: "$Verbosity!='Terse'" - then: [t: "a"] # (en: 'the', DeepL translation) - - t: "kettős kötés" # (en: 'double union of', DeepL translation) - - "⋔": # 0x22d4 - - test: - if: "$Verbosity!='Terse'" - then: [t: "a"] # (en: 'the', DeepL translation) - - t: "megfelelő metszéspontja" # (en: 'proper intersection of', DeepL translation) - - "⋕": # 0x22d5 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "egyenlő és párhuzamos" # (en: 'equal to and parallel to', DeepL translation) - - "⋖": [t: "kisebb, mint pontokkal"] # 0x22d6 (en: 'less than with dot', DeepL translation) - - "⋗": [t: "nagyobb, mint ponttal"] # 0x22d7 (en: 'greater than with dot', DeepL translation) - - "⋘": # 0x22d8 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nagyon sokkal kisebb, mint" # (en: 'very much less than', DeepL translation) - - "⋙": # 0x22d9 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nagyon sokkal nagyobb, mint" # (en: 'very much greater than', DeepL translation) - - "⋚": # 0x22da - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "kisebb, mint egyenlő vagy nagyobb, mint" # (en: 'less than equal to or greater than', DeepL translation) - - "⋛": # 0x22db - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nagyobb, mint egyenlő vagy kisebb, mint" # (en: 'greater than equal to or less than', DeepL translation) - - "⋜": # 0x22dc - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "egyenlő vagy kisebb, mint" # (en: 'equal to or less than', DeepL translation) - - "⋝": # 0x22dd - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "egyenlő vagy nagyobb, mint" # (en: 'equal to or greater than', DeepL translation) - - "⋞": # 0x22de - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "egyenlő vagy megelőzi" # (en: 'equal to or precedes', DeepL translation) - - "⋟": # 0x22df - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "egyenlő vagy sikerül" # (en: 'equal to or succeeds', DeepL translation) - - "⋠": [t: "nem előzi meg és nem egyenlő"] # 0x22e0 (en: 'does not precede nor is equal to', DeepL translation) - - "⋡": [t: "nem sikerül sem nem egyenlő"] # 0x22e1 (en: 'does not succeed nor is equal to', DeepL translation) - - "⋢": [t: "nem négyzetképe vagy egyenlő"] # 0x22e2 (en: 'not square image of or equal to', DeepL translation) - - "⋣": [t: "nem négyzet eredeti vagy egyenlő"] # 0x22e3 (en: 'not square original of or equal to', DeepL translation) - - "⋤": [t: "négyzetes képe vagy nem egyenlő"] # 0x22e4 (en: 'square image of or not equal to', DeepL translation) - - "⋥": [t: "négyzet eredeti vagy nem egyenlő"] # 0x22e5 (en: 'square original of or not equal to', DeepL translation) - - "⋦": # 0x22e6 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "kevesebb, mint, de nem egyenlő" # (en: 'less than but not equivalent to', DeepL translation) - - "⋧": # 0x22e7 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nagyobb, mint, de nem egyenértékű" # (en: 'greater than but not equivalent to', DeepL translation) - - "⋨": [t: "megelőzi, de nem egyenértékű vele"] # 0x22e8 (en: 'precedes but is not equivalent to', DeepL translation) - - "⋩": [t: "sikerül, de nem egyenértékű"] # 0x22e9 (en: 'succeeds but is not equivalent to', DeepL translation) - - "⋪": # 0x22ea - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nem normális alcsoportja" # (en: 'not a normal subgroup of', DeepL translation) - - "⋫": [t: "nem tartalmaz normál alcsoportként"] # 0x22eb (en: 'does not contain as a normal subgroup', DeepL translation) - - "⋬": # 0x22ec - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nem normális alcsoportja sem egyenlő" # (en: 'not a normal subgroup of nor is equal to', DeepL translation) - - "⋭": [t: "nem tartalmazza normál alcsoportként sem egyenlő"] # 0x22ed (en: 'does not contain as a normal subgroup nor is equal to', DeepL translation) - - "⋮": [t: "függőleges ellipszis"] # 0x22ee (en: 'vertical ellipsis', DeepL translation) - - "⋯": [t: "pont pont pont pont"] # 0x22ef (en: 'dot dot dot', DeepL translation) - - "⋰": [t: "felfelé átlós ellipszis"] # 0x22f0 (en: 'up diagonal ellipsis', DeepL translation) - - "⋱": [t: "átlós ellipszis"] # 0x22f1 (en: 'diagonal ellipsis', DeepL translation) - - "⋲": [t: "eleme hosszú vízszintes vonallal"] # 0x22f2 (en: 'element of with long horizontal stroke', DeepL translation) - - "⋳": [t: "elem függőleges vonallal a vízszintes vonás végén"] # 0x22f3 (en: 'element of with vertical bar at end of horizontal stroke', DeepL translation) - - "⋴": [t: "elem függőleges vonallal a vízszintes vonás végén"] # 0x22f4 (en: 'element of with vertical bar at end of horizontal stroke', DeepL translation) - - "⋵": [t: "elem a pont fölött"] # 0x22f5 (en: 'element of with dot above', DeepL translation) - - "⋶": [t: "elem a fölött vonallal"] # 0x22f6 (en: 'element of with overbar', DeepL translation) - - "⋷": [t: "elem a fölött vonallal"] # 0x22f7 (en: 'element of with overbar', DeepL translation) - - "⋸": [t: "eleme alulvonallal"] # 0x22f8 (en: 'element of with underbar', DeepL translation) - - "⋹": [t: "eleme két vízszintes vonallal"] # 0x22f9 (en: 'element of with two horizontal strokes', DeepL translation) - - "⋺": [t: "hosszú vízszintes vonallal tartalmazza"] # 0x22fa (en: 'contains with long horizontal stroke', DeepL translation) - - "⋻": [t: "tartalmaz függőleges sávval a vízszintes vonás végén"] # 0x22fb (en: 'contains with vertical bar at end of horizontal stroke', DeepL translation) - - "⋼": [t: "tartalmaz függőleges sávval a vízszintes vonás végén"] # 0x22fc (en: 'contains with vertical bar at end of horizontal stroke', DeepL translation) - - "⋽": [t: "tartalmazza a túlsó sávot"] # 0x22fd (en: 'contains with overbar', DeepL translation) - - "⋾": [t: "tartalmazza a túlsó sávot"] # 0x22fe (en: 'contains with overbar', DeepL translation) - - "⋿": [t: "z jelölés táska tagság"] # 0x22ff (en: 'z notation bag membership', DeepL translation) - - "⌀": [t: "átmérő"] # 0x2300 (en: 'diameter', DeepL translation) - - "⌁": [t: "elektromos nyíl"] # 0x2301 (en: 'electric arrow', DeepL translation) - - "⌂": [t: "ház"] # 0x2302 (en: 'house', DeepL translation) - - "⌃": [t: "felfelé mutató nyílhegy"] # 0x2303 (en: 'up arrowhead', DeepL translation) - - "⌄": [t: "lefelé mutató nyílhegy"] # 0x2304 (en: 'down arrowhead', DeepL translation) - - "⌅": [t: "projekciós"] # 0x2305 (en: 'projective', DeepL translation) - - "⌆": [t: "perspektíva"] # 0x2306 (en: 'perspective', DeepL translation) - - "⌇": [t: "hullámvonal"] # 0x2307 (en: 'wavy line', DeepL translation) - - "⌈": [t: "bal felső határ"] # 0x2308 (en: 'left ceiling', DeepL translation) - - "⌉": [t: "jobb oldali mennyezet"] # 0x2309 (en: 'right ceiling', DeepL translation) - - "⌊": [t: "bal padló"] # 0x230a (en: 'left floor', DeepL translation) - - "⌋": [t: "jobb oldali padló"] # 0x230b (en: 'right floor', DeepL translation) - - "⌌": [t: "jobb alsó vágás"] # 0x230c (en: 'bottom right crop', DeepL translation) - - "⌍": [t: "bal alsó vágás"] # 0x230d (en: 'bottom left crop', DeepL translation) - - "⌎": [t: "jobb felső vágás"] # 0x230e (en: 'top right crop', DeepL translation) - - "⌏": [t: "balra fent vágás"] # 0x230f (en: 'top left crop', DeepL translation) - - "⌐": [t: "fordított nem jel"] # 0x2310 (en: 'reversed not sign', DeepL translation) - - "⌑": [t: "négyzet rozettás"] # 0x2311 (en: 'square lozenge', DeepL translation) - - "⌒": [t: "ív"] # 0x2312 (en: 'arc', DeepL translation) - - "⌓": [t: "szegmens"] # 0x2313 (en: 'segment', DeepL translation) - - "⌔": [t: "szektor"] # 0x2314 (en: 'sector', DeepL translation) - - "⌕": [t: "telefonos diktafon"] # 0x2315 (en: 'telephone recorder', DeepL translation) - - "⌖": [t: "helyzetjelző szálkereszt"] # 0x2316 (en: 'position indicator crosshairs', DeepL translation) - - "⌗": [t: "viewdata négyzet"] # 0x2317 (en: 'viewdata square', DeepL translation) - - "⌘": [t: "érdekesség helye jel"] # 0x2318 (en: 'place of interest sign', DeepL translation) - - "⌙": [t: "fordított nem jel"] # 0x2319 (en: 'turned not sign', DeepL translation) - - "⌚": [t: "óra"] # 0x231a (en: 'watch', DeepL translation) - - "⌛": [t: "homokóra"] # 0x231b (en: 'hourglass', DeepL translation) - - "⌜": [t: "bal felső sarok"] # 0x231c (en: 'top left corner', DeepL translation) - - "⌝": [t: "jobb felső sarok"] # 0x231d (en: 'top right corner', DeepL translation) - - "⌞": [t: "bal alsó sarok"] # 0x231e (en: 'bottom left corner', DeepL translation) - - "⌟": [t: "jobb alsó sarok"] # 0x231f (en: 'bottom right corner', DeepL translation) - - "⌠": [t: "felső fél egész"] # 0x2320 (en: 'top half integral', DeepL translation) - - "⌡": [t: "alsó fele integrált"] # 0x2321 (en: 'bottom half integral', DeepL translation) - - "⌢": [t: "homlokráncolás"] # 0x2322 (en: 'frown', DeepL translation) - - "⌣": [t: "mosoly"] # 0x2323 (en: 'smile', DeepL translation) - - "⌤": [t: "felfelé nyílhegy két vízszintes sáv között"] # 0x2324 (en: 'up arrowhead between two horizontal bars', DeepL translation) - - "⌥": [t: "opciós billentyű"] # 0x2325 (en: 'option key', DeepL translation) - - "⌦": [t: "törlés jobbra"] # 0x2326 (en: 'erase to the right', DeepL translation) - - "⌧": [t: "x téglalap alakú négyzetben"] # 0x2327 (en: 'x in a rectangle box', DeepL translation) - - "⌨": [t: "billentyűzet"] # 0x2328 (en: 'keyboard', DeepL translation) - - "〈": [t: "balra mutató szögletes zárójel"] # 0x2329 (en: 'left pointing angle bracket', DeepL translation) - - "〉": [t: "jobbra mutató szögletes zárójel"] # 0x232a (en: 'right pointing angle bracket', DeepL translation) - - "⌫": [t: "törlés balra"] # 0x232b (en: 'erase to the left', DeepL translation) - - "⌬": [t: "benzolgyűrű"] # 0x232c (en: 'benzene ring', DeepL translation) - - "⌭": [t: "hengeresség"] # 0x232d (en: 'cylindricity', DeepL translation) - - "⌮": [t: "körkörös profil"] # 0x232e (en: 'all around profile', DeepL translation) - - "⌯": [t: "szimmetria"] # 0x232f (en: 'symmetry', DeepL translation) - - "⌰": [t: "teljes kifutás"] # 0x2330 (en: 'total runout', DeepL translation) - - "⌱": [t: "dimenzió eredete"] # 0x2331 (en: 'dimension origin', DeepL translation) - - "⌲": [t: "kúpos kúp"] # 0x2332 (en: 'conical taper', DeepL translation) - - "⌳": [t: "ferde"] # 0x2333 (en: 'slope', DeepL translation) - - "⌴": [t: "ellenző"] # 0x2334 (en: 'counterbore', DeepL translation) - - "⌵": [t: "süllyesztett"] # 0x2335 (en: 'countersink', DeepL translation) - - "⌶": [t: "apl i gerenda"] # 0x2336 (en: 'apl i beam', DeepL translation) - - "⌽": [t: "apl kör stile"] # 0x233d (en: 'apl circle stile', DeepL translation) - - "⌿": [t: "apl slash bar"] # 0x233f (DeepL translation) - - "⍰": [t: "ismeretlen doboz"] # 0x2370 (en: 'unknown box', DeepL translation) - - "⍼": [t: "derékszög lefelé cikcakkos nyíllal"] # 0x237c (en: 'right angle with down zigzag arrow', DeepL translation) - - "⎔": [t: "hatszög"] # 0x2394 (en: 'hexagon', DeepL translation) - - "⎕": [t: "doboz"] # 0x2395 (en: 'box', DeepL translation) - - "⎶": [t: "alsó szögletes zárójel felett felső szögletes zárójel"] # 0x23b6 (en: 'bottom square bracket over top square bracket', DeepL translation) - - "⏜": [t: "felső zárójel"] # 0x23dc (en: 'top paren', DeepL translation) - - "⏝": [t: "alsó zárójel"] # 0x23dd (en: 'bottom paren', DeepL translation) - - "⏞": [t: "felső zárójel"] # 0x23de (en: 'top brace', DeepL translation) - - "⏟": [t: "alsó zárójel"] # 0x23df (en: 'bottom brace', DeepL translation) - - "⏠": [t: "felső teknőspáncélos konzol"] # 0x23e0 (en: 'top tortoise shell bracket', DeepL translation) - - "⏡": [t: "alsó teknőspáncélos zárójel"] # 0x23e1 (en: 'bottom tortoise shell bracket', DeepL translation) - - "⏢": [t: "fehér trapéz"] # 0x23e2 (en: 'white trapezium', DeepL translation) - - "⏣": [T: "benzolgyűrű körrel"] # 0x23e3 (en: 'benzene right with circle', DeepL translation) - - "⏤": [t: "egyenesség"] # 0x23e4 (en: 'straightness', DeepL translation) - - "⏥": [t: "laposság"] # 0x23e5 (en: 'flatness', DeepL translation) - - "⏦": # 0x23e6 - - spell: "ac" - - t: "jelenlegi" # (en: 'current', DeepL translation) - - "⏧": [t: "elektromos kereszteződés"] # 0x23e7 (en: 'electrical intersection', DeepL translation) - - "①-⑨": # 0x2460 - 0x2469 - - T: "bekarikázott" # (en: 'circled', DeepL translation) - - spell: "translate('.', '①②③④⑤⑥⑦⑧⑨', '123456789')" - - "⑩": [T: "bekarikázott tízes"] # 0x2469 (en: 'circled ten', DeepL translation) - - "⑪": [t: "bekarikázott tizenegy"] # 0x246a (en: 'circled eleven', DeepL translation) - - "⑫": [t: "bekarikázott tizenkettő"] # 0x246b (en: 'circled twelve', DeepL translation) - - "⑬": [t: "bekarikázott tizenhármas"] # 0x246c (en: 'circled thirteen', DeepL translation) - - "⑭": [t: "bekarikázott tizennégy"] # 0x246d (en: 'circled fourteen', DeepL translation) - - "⑮": [t: "bekarikázott tizenöt"] # 0x246e (en: 'circled fifteen', DeepL translation) - - "⑯": [t: "bekarikázott tizenhatos"] # 0x246f (en: 'circled sixteen', DeepL translation) - - "⑰": [t: "bekarikázott tizenhét"] # 0x2470 (en: 'circled seventeen', DeepL translation) - - "⑱": [t: "bekarikázott tizenegy"] # 0x2471 (en: 'circled eighteen', DeepL translation) - - "⑳": [t: "bekarikázott húsz"] # 0x2473 (en: 'circled twenty', DeepL translation) - - "⑴-⑼": # 0x2474 - 0x247d - - t: "zárójeles" # (en: 'parenthesized', DeepL translation) - - spell: "translate('.', '⑴⑵⑶⑷⑸⑹⑺⑻⑼', '123456789')" - - "⑽": [t: "zárójeles tízes"] # 0x247d (en: 'parenthesized ten', DeepL translation) - - "⑾": [t: "zárójeles tizenegyes"] # 0x247e (en: 'parenthesized eleven', DeepL translation) - - "⑿": [t: "zárójeles zárójeles tizenkettő"] # 0x247f (en: 'parenthesized twelve', DeepL translation) - - "⒀": [t: "zárójeles tizenhárom"] # 0x2480 (en: 'parenthesized thirteen', DeepL translation) - - "⒁": [t: "zárójeles tizennégyes"] # 0x2481 (en: 'parenthesized fourteen', DeepL translation) - - "⒂": [t: "zárójeles zárójeles tizenötös"] # 0x2482 (en: 'parenthesized fifteen', DeepL translation) - - "⒃": [t: "zárójeles tizenhatos"] # 0x2483 (en: 'parenthesized sixteen', DeepL translation) - - "⒄": [t: "zárójeles zárójeles tizenhét"] # 0x2484 (en: 'parenthesized seventeen', DeepL translation) - - "⒅": [t: "zárójeles zárójeles tizenegyes"] # 0x2485 (en: 'parenthesized eighteen', DeepL translation) - - "⒆": [t: "zárójeles zárójeles tizenkilenc"] # 0x2486 (en: 'parenthesized nineteen', DeepL translation) - - "⒇": [t: "zárójeles zárójeles húszas"] # 0x2487 (en: 'parenthesized twenty', DeepL translation) - - "⒈-⒐": # 0x2488 - 0x2491 - - spell: "translate('.', '⒈⒉⒊⒋⒌⒍⒎⒏⒐', '123456789')" - - t: "ponttal" # (en: 'with period', DeepL translation) - - "⒑": [t: "tízes pontokkal"] # 0x2491 (en: 'ten with period', DeepL translation) - - "⒒": [t: "tizenegyes pontokkal"] # 0x2492 (en: 'eleven with period', DeepL translation) - - "⒓": [t: "tizenkettő ponttal"] # 0x2493 (en: 'twelve with period', DeepL translation) - - "⒔": [t: "tizenhármas pont"] # 0x2494 (en: 'thirteen with period', DeepL translation) - - "⒕": [t: "tizennégy ponttal"] # 0x2495 (en: 'fourteen with period', DeepL translation) - - "⒖": [t: "tizenöt pont"] # 0x2496 (en: 'fifteen with period', DeepL translation) - - "⒗": [t: "tizenhatos pont"] # 0x2497 (en: 'sixteen with period', DeepL translation) - - "⒘": [t: "tizenhét pont"] # 0x2498 (en: 'seventeen with period', DeepL translation) - - "⒙": [t: "tizennégy ponttal"] # 0x2499 (en: 'eighteen with period', DeepL translation) - - "⒚": [t: "tizenkilenc ponttal"] # 0x249a (en: 'nineteen with period', DeepL translation) - - "⒛": [t: "húsz ponttal"] # 0x249b (en: 'twenty with period', DeepL translation) - - "⒜-⒵": # 0x249c - 0x24b5 - - t: "zárójeles" # (en: 'parenthesized', DeepL translation) - - spell: "translate('.', '⒜⒝⒞⒟⒠⒡⒢⒣⒤⒥⒦⒧⒨⒩⒪⒫⒬⒭⒮⒯⒰⒱⒲⒳⒴⒵', 'abcdefghijklmnopqrstuvwxyz')" - - - "Ⓐ-ⓩ": # 0x24b6 - 0x24cf - - T: "bekarikázott" # (en: 'circled', DeepL translation) - - spell: "translate('.', 'ⒶⒷⒸⒹⒺⒻⒼⒽⒾⒿⓀⓁⓂⓃⓄⓅⓆⓇⓈⓉⓊⓋⓌⓍⓎⓏ', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "🅐-🅩": # 0x1f150 - 0x1f169 - - T: "fekete körrel jelölt" # (en: 'black circled', DeepL translation) - - spell: "translate('.', '🅐🅑🅒🅓🅔🅕🅖🅗🅘🅙🅚🅛🅜🅝🅞🅟🅠🅡🅢🅣🅤🅥🅦🅧🅨🅩', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "ⓐ-ⓩ": # 0x24d0 - 0x24e9 - - T: "bekarikázott" # (en: 'circled', DeepL translation) - - spell: "translate('.', 'ⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩ', 'abcdefghijklmnopqrstuvwxyz')" - - "⓪": [t: "bekarikázott nulla"] # 0x24ea (en: 'circled zero', DeepL translation) - - "⓫": [T: "fekete kör alakú tizenegyes"] # 0x24eb (en: 'black circled eleven', DeepL translation) - - "⓬": [T: "fekete bekarikázott tizenkettő"] # 0x24ec (en: 'black circled twelve', DeepL translation) - - "⓭": [T: "fekete bekarikázott tizenhárom"] # 0x24ed (en: 'black circled thirteen', DeepL translation) - - "⓮": [T: "fekete bekarikázott tizennégy"] # 0x24ee (en: 'black circled fourteen', DeepL translation) - - "⓯": [T: "fekete bekarikázott tizenöt"] # 0x24ef (en: 'black circled fifteen', DeepL translation) - - "⓰": [T: "fekete bekarikázott tizenhat"] # 0x24f0 (en: 'black circled sixteen', DeepL translation) - - "⓱": [T: "fekete bekarikázott tizenhét"] # 0x24f1 (en: 'black circled seventeen', DeepL translation) - - "⓲": [T: "fekete karikázott tizenegyes"] # 0x24f2 (en: 'black circled eighteen', DeepL translation) - - "⓳": [T: "fekete bekarikázott tizenkilenc"] # 0x24f3 (en: 'black circled nineteen', DeepL translation) - - "⓴": [t: "fekete bekarikázott húszas"] # 0x24f4 (en: 'black circled twenty', DeepL translation) - - "⓵-⓽": # 0x24f5 - 0x24fe - - T: "dupla bekarikázott" # (en: 'double circled', DeepL translation) - - spell: "translate('.', '⓵⓶⓷⓸⓹⓺⓻⓼⓽', '123456789')" - - "⓾": [T: "dupla bekarikázott tízes"] # 0x24fe (en: 'double circled ten', DeepL translation) - - "⓿": [T: "fekete bekarikázott nulla"] # 0x24ff (en: 'black circled zero', DeepL translation) - - "■": [T: "fekete négyzet"] # 0x25a0 (en: 'black square', DeepL translation) - - "□": [T: "fehér négyzet"] # 0x25a1 (en: 'white square', DeepL translation) - - "▢": [T: "fehér négyzet lekerekített sarkokkal"] # 0x25a2 (en: 'white square with rounded corners', DeepL translation) - - "▣": [T: "fehér négyzet, amely kis fekete négyzetet tartalmaz"] # 0x25a3 (en: 'white square containing small black square', DeepL translation) - - "▤": [t: "négyzet vízszintes kitöltéssel"] # 0x25a4 (en: 'square with horizontal fill', DeepL translation) - - "▥": [t: "négyzet függőleges kitöltéssel"] # 0x25a5 (en: 'square with vertical fill', DeepL translation) - - "▦": [t: "négyzet ortogonális kereszthúzással kitöltve"] # 0x25a6 (en: 'square with orthogonal crosshatch fill', DeepL translation) - - "▧": [t: "négyzet bal felső és jobb alsó kitöltéssel"] # 0x25a7 (en: 'square with upper left to lower right fill', DeepL translation) - - "▨": [t: "négyzet jobb felsővel bal alsó kitöltés"] # 0x25a8 (en: 'square with upper right to lower left fill', DeepL translation) - - "▩": [t: "négyzet átlós kereszthúzással kitöltve"] # 0x25a9 (en: 'square with diagonal crosshatch fill', DeepL translation) - - "▪": [t: "fekete kis négyzet"] # 0x25aa (en: 'black small square', DeepL translation) - - "▫": [t: "fehér kis négyzet"] # 0x25ab (en: 'white small square', DeepL translation) - - "▬": [t: "fekete téglalap"] # 0x25ac (en: 'black rectangle', DeepL translation) - - "▭": [t: "fehér téglalap"] # 0x25ad (en: 'white rectangle', DeepL translation) - - "▮": [t: "fekete függőleges téglalap"] # 0x25ae (en: 'black vertical rectangle', DeepL translation) - - "▯": [t: "fehér függőleges téglalap"] # 0x25af (en: 'white vertical rectangle', DeepL translation) - - "▰": [t: "fekete párhuzamos"] # 0x25b0 (en: 'black parallelogram', DeepL translation) - - "▱": [t: "fehér párhuzamos"] # 0x25b1 (en: 'white parallelogram', DeepL translation) - - "▲": [t: "fekete felfelé mutató háromszög"] # 0x25b2 (en: 'black up pointing triangle', DeepL translation) - - "△": [t: "háromszög"] # 0x25b3 (en: 'triangle', DeepL translation) - - "▴": [t: "fekete felfelé mutató kis háromszög"] # 0x25b4 (en: 'black up pointing small triangle', DeepL translation) - - "▵": [t: "fehér felfelé mutató kis háromszög"] # 0x25b5 (en: 'white up pointing small triangle', DeepL translation) - - "▶": [t: "fekete jobbra mutató háromszög"] # 0x25b6 (en: 'black right pointing triangle', DeepL translation) - - "▷": [t: "fehér jobbra mutató háromszög"] # 0x25b7 (en: 'white right pointing triangle', DeepL translation) - - "▸": [t: "fekete jobbra mutató kis háromszög"] # 0x25b8 (en: 'black right pointing small triangle', DeepL translation) - - "▹": [t: "fehér jobbra mutató kis háromszög"] # 0x25b9 (en: 'white right pointing small triangle', DeepL translation) - - "►": [t: "fekete jobbra mutató mutató"] # 0x25ba (en: 'black right pointing pointer', DeepL translation) - - "▻": [t: "fehér jobbra mutató mutató"] # 0x25bb (en: 'white right pointing pointer', DeepL translation) - - "▼": [t: "fekete lefelé mutató háromszög"] # 0x25bc (en: 'black down pointing triangle', DeepL translation) - - "▽": [t: "fehér lefelé mutató háromszög"] # 0x25bd (en: 'white down pointing triangle', DeepL translation) - - "▾": [t: "fekete lefelé mutató kis háromszög"] # 0x25be (en: 'black down pointing small triangle', DeepL translation) - - "▿": [t: "fehér lefelé mutató kis háromszög"] # 0x25bf (en: 'white down pointing small triangle', DeepL translation) - - "◀": [t: "fekete balra mutató háromszög"] # 0x25c0 (en: 'black left pointing triangle', DeepL translation) - - "◁": [t: "fehér balra mutató kis háromszög"] # 0x25c1 (en: 'white left pointing triangle', DeepL translation) - - "◂": [t: "fekete balra mutató kis háromszög"] # 0x25c2 (en: 'black left pointing small triangle', DeepL translation) - - "◃": [t: "fehér balra mutató kis háromszög"] # 0x25c3 (en: 'white left pointing small triangle', DeepL translation) - - "◄": [t: "fekete balra mutató mutató"] # 0x25c4 (en: 'black left pointing pointer', DeepL translation) - - "◅": [t: "fehér balra mutató mutató mutató"] # 0x25c5 (en: 'white left pointing pointer', DeepL translation) - - "◆": [t: "fekete gyémánt"] # 0x25c6 (en: 'black diamond', DeepL translation) - - "◇": [t: "fehér rombusz"] # 0x25c7 (en: 'white diamond', DeepL translation) - - "◈": [t: "fehér rombusz, benne fekete kis rombusz"] # 0x25c8 (en: 'white diamond containing black small diamond', DeepL translation) - - "◉": [t: "halszem"] # 0x25c9 (en: 'fisheye', DeepL translation) - - "◊": [t: "rozettás"] # 0x25ca (en: 'lozenge', DeepL translation) - - "○": [t: "fehér kör"] # 0x25cb (en: 'white circle', DeepL translation) - - "◌": [t: "pontozott kör"] # 0x25cc (en: 'dotted circle', DeepL translation) - - "◍": [t: "kör függőleges kitöltéssel"] # 0x25cd (en: 'circle with vertical fill', DeepL translation) - - "◎": [t: "bullseye"] # 0x25ce (DeepL translation) - - "●": [t: "fekete kör"] # 0x25cf (en: 'black circle', DeepL translation) - - "◐": [t: "kör bal oldali felével fekete"] # 0x25d0 (en: 'circle with left half black', DeepL translation) - - "◑": [t: "kör jobb oldali fél feketével"] # 0x25d1 (en: 'circle with right half black', DeepL translation) - - "◒": [t: "kör alsó felével fekete"] # 0x25d2 (en: 'circle with lower half black', DeepL translation) - - "◓": [t: "kör felső fele fekete"] # 0x25d3 (en: 'circle with upper half black', DeepL translation) - - "◔": [t: "kör jobb felső kvadráns fekete"] # 0x25d4 (en: 'circle with upper right quadrant black', DeepL translation) - - "◕": [t: "kör a bal felső negyed kivételével fekete színnel"] # 0x25d5 (en: 'circle with all but upper left quadrant black', DeepL translation) - - "◖": [t: "bal fél fekete kör"] # 0x25d6 (en: 'left half black circle', DeepL translation) - - "◗": [t: "jobb oldali fél fekete kör"] # 0x25d7 (en: 'right half black circle', DeepL translation) - - "◘": [t: "fordított golyó"] # 0x25d8 (en: 'inverse bullet', DeepL translation) - - "◙": [t: "inverz fehér kör"] # 0x25d9 (en: 'inverse white circle', DeepL translation) - - "◚": [t: "felső fele inverz fehér kör"] # 0x25da (en: 'upper half inverse white circle', DeepL translation) - - "◛": [t: "alsó fél inverz fehér kör"] # 0x25db (en: 'lower half inverse white circle', DeepL translation) - - "◜": [t: "bal felső kvadránsban kör alakú ív"] # 0x25dc (en: 'upper left quadrant circular arc', DeepL translation) - - "◝": [t: "jobb felső kvadránsban körív"] # 0x25dd (en: 'upper right quadrant circular arc', DeepL translation) - - "◞": [t: "jobb alsó kvadráns körív"] # 0x25de (en: 'lower right quadrant circular arc', DeepL translation) - - "◟": [t: "bal alsó kvadráns körív"] # 0x25df (en: 'lower left quadrant circular arc', DeepL translation) - - "◠": [t: "felső félkör"] # 0x25e0 (en: 'upper half circle', DeepL translation) - - "◡": [t: "alsó félkör"] # 0x25e1 (en: 'lower half circle', DeepL translation) - - "◢": [t: "fekete jobb alsó háromszög"] # 0x25e2 (en: 'black lower right triangle', DeepL translation) - - "◣": [t: "fekete bal alsó háromszög"] # 0x25e3 (en: 'black lower left triangle', DeepL translation) - - "◤": [t: "fekete bal felső háromszög"] # 0x25e4 (en: 'black upper left triangle', DeepL translation) - - "◥": [t: "fekete jobb felső háromszög"] # 0x25e5 (en: 'black upper right triangle', DeepL translation) - - "◦": [t: "kompozíció"] # 0x25e6 (en: 'composition', DeepL translation) - - "◧": [t: "négyzet bal fele fekete"] # 0x25e7 (en: 'square with left half black', DeepL translation) - - "◨": [t: "négyzet jobb oldali felével fekete"] # 0x25e8 (en: 'square with right half black', DeepL translation) - - "◩": [t: "négyzet bal felső felével fekete"] # 0x25e9 (en: 'square with upper left half black', DeepL translation) - - "◪": [t: "négyzet jobb alsó felével fekete"] # 0x25ea (en: 'square with lower right half black', DeepL translation) - - "◫": [t: "fehér négyzet felezővonallal"] # 0x25eb (en: 'white square with bisecting line', DeepL translation) - - "◬": [t: "fehér felfelé mutató háromszög ponttal"] # 0x25ec (en: 'white up pointing triangle with dot', DeepL translation) - - "◭": [t: "felfelé mutató háromszög, bal fele fekete"] # 0x25ed (en: 'up pointing triangle with left half black', DeepL translation) - - "◮": [t: "felfelé mutató háromszög, jobb oldali fele fekete"] # 0x25ee (en: 'up pointing triangle with right half black', DeepL translation) - - "◯": [t: "nagy kör"] # 0x25ef (en: 'large circle', DeepL translation) - - "◰": [t: "fehér négyzet bal felső négyszöggel"] # 0x25f0 (en: 'white square with upper left quadrant', DeepL translation) - - "◱": [t: "fehér négyzet a bal alsó négyszöggel"] # 0x25f1 (en: 'white square with lower left quadrant', DeepL translation) - - "◲": [t: "fehér négyzet a jobb alsó négyszöggel"] # 0x25f2 (en: 'white square with lower right quadrant', DeepL translation) - - "◳": [t: "fehér négyzet jobb felső négyszöggel"] # 0x25f3 (en: 'white square with upper right quadrant', DeepL translation) - - "◴": [t: "fehér kör a bal felső negyedben"] # 0x25f4 (en: 'white circle with upper left quadrant', DeepL translation) - - "◵": [t: "fehér kör a bal alsó kvadránsban"] # 0x25f5 (en: 'white circle with lower left quadrant', DeepL translation) - - "◶": [t: "fehér kör a jobb alsó kvadránssal"] # 0x25f6 (en: 'white circle with lower right quadrant', DeepL translation) - - "◷": [t: "fehér kör a jobb felső kvadránsban"] # 0x25f7 (en: 'white circle with upper right quadrant', DeepL translation) - - "◸": [t: "bal felső háromszög"] # 0x25f8 (en: 'upper left triangle', DeepL translation) - - "◹": [t: "jobb felső háromszög"] # 0x25f9 (en: 'upper right triangle', DeepL translation) - - "◺": [t: "bal alsó háromszög"] # 0x25fa (en: 'lower left triangle', DeepL translation) - - "◻": [t: "fehér közepes négyzet"] # 0x25fb (en: 'white medium square', DeepL translation) - - "◼": [t: "fekete közepes négyzet"] # 0x25fc (en: 'black medium square', DeepL translation) - - "◽": [t: "fehér közepes kis négyzet"] # 0x25fd (en: 'white medium small square', DeepL translation) - - "◾": [t: "fekete közepes kis négyzet"] # 0x25fe (en: 'black medium small square', DeepL translation) - - "◿": [t: "jobb alsó háromszög"] # 0x25ff (en: 'lower right triangle', DeepL translation) - - "★": [t: "fekete csillag"] # 0x2605 (en: 'black star', DeepL translation) - - "☆": [t: "fehér csillag"] # 0x2606 (en: 'white star', DeepL translation) - - "☉": [t: "nap"] # 0x2609 (en: 'sun', DeepL translation) - - "☌": [t: "összekapcsolás"] # 0x260c (en: 'conjunction', DeepL translation) - - "☒": [t: "szavazóurnában x-szel"] # 0x2612 (en: 'ballot box with x', DeepL translation) - - "☽": [t: "növekvő hold"] # 0x263d (en: 'waxing moon', DeepL translation) - - "☾": [t: "fogyó hold"] # 0x263e (en: 'waning moon', DeepL translation) - - "☿": [t: "higany"] # 0x263f (en: 'mercury', DeepL translation) - - "♀": [t: "női"] # 0x2640 (en: 'female', DeepL translation) - - "♁": [t: "föld"] # 0x2641 (en: 'earth', DeepL translation) - - "♂": [t: "férfi"] # 0x2642 (en: 'male', DeepL translation) - - "♃": [t: "jupiter"] # 0x2643 (DeepL translation) - - "♄": [t: "szaturnusz"] # 0x2644 (en: 'saturn', DeepL translation) - - "♅": [t: "uránusz"] # 0x2645 (en: 'uranus', DeepL translation) - - "♆": [t: "neptun"] # 0x2646 (en: 'neptune', DeepL translation) - - "♇": [t: "plútó"] # 0x2647 (en: 'pluto', DeepL translation) - - "♈": [t: "kos"] # 0x2648 (en: 'aries', DeepL translation) - - "♉": [t: "taurus"] # 0x2649 (DeepL translation) - - "♩": [t: "negyedhang"] # 0x2669 (en: 'quarter note', DeepL translation) - - "♭": [t: "lapos"] # 0x266d (en: 'flat', DeepL translation) - - "♮": [t: "természetes"] # 0x266e (en: 'natural', DeepL translation) - - "♯": [t: "éles"] # 0x266f (en: 'sharp', DeepL translation) - - "♠": [t: "fekete pikkelyes öltöny"] # 0x2660 (en: 'black spade suit', DeepL translation) - - "♡": [t: "fehér szív szín"] # 0x2661 (en: 'white heart suit', DeepL translation) - - "♢": [t: "fehér rombusz színű öltöny"] # 0x2662 (en: 'white diamond suit', DeepL translation) - - "♣": [t: "fekete treff színű"] # 0x2663 (en: 'black club suit', DeepL translation) - - "♤": [t: "fehér pikk szín"] # 0x2664 (en: 'white spade suit', DeepL translation) - - "♥": [t: "fekete szívecske"] # 0x2665 (en: 'black heart suit', DeepL translation) - - "♦": [t: "fekete káró szín"] # 0x2666 (en: 'black diamond suit', DeepL translation) - - "♧": [t: "fehér treff szín"] # 0x2667 (en: 'white club suit', DeepL translation) - - "⚀": [t: "1. kockaoldal"] # 0x2680 (en: 'die face 1', DeepL translation) - - "⚁": [t: "2. szelvény"] # 0x2681 (en: 'die face 2', DeepL translation) - - "⚂": [t: "3. kockaoldal"] # 0x2682 (en: 'die face 3', DeepL translation) - - "⚃": [t: "kocka 4. arca"] # 0x2683 (en: 'die face 4', DeepL translation) - - "⚄": [t: "kocka arc 5"] # 0x2684 (en: 'die face 5', DeepL translation) - - "⚅": [t: "6. kockaoldal"] # 0x2685 (en: 'die face 6', DeepL translation) - - "⚆": [t: "fehér kör jobbra ponttal"] # 0x2686 (en: 'white circle with dot right', DeepL translation) - - "⚇": [t: "fehér kör két ponttal"] # 0x2687 (en: 'white circle wiht two dots', DeepL translation) - - "⚈": [t: "fekete kör jobbra mutató ponttal"] # 0x2688 (en: 'black circle with dot right', DeepL translation) - - "⚉": [T: "fekete kör két ponttal"] # 0x2689 (en: 'black circle wiht two dots', DeepL translation) - - "⚪": [T: "közepes fehér kör"] # 0x26aa (en: 'medium white circle', DeepL translation) - - "⚫": [T: "közepes fekete kör"] # 0x26ab (en: 'medium black circle', DeepL translation) - - "⚬": [T: "közepes kis fehér kör"] # 0x26ac (en: 'medium small white circle', DeepL translation) - - "⚲": [T: "neutrális"] # 0x26b2 (en: 'neuter', DeepL translation) - - "✓": [t: "pipa"] # 0x2713 (en: 'check mark', DeepL translation) - - "✠": [t: "máltai kereszt"] # 0x2720 (en: 'maltese cross', DeepL translation) - - "✪": [t: "bekarikázott fehér csillag"] # 0x272a (en: 'circled white star', DeepL translation) - - "✶": [t: "hat piontos fekete csillag"] # 0x2736 (en: 'six pionted black star', DeepL translation) - - "❨": [t: "közepes bal oldali zárójeles díszítés"] # 0x2768 (en: 'medium left parentheses ornament', DeepL translation) - - "❩": [t: "középen jobbra zárójelben díszítés"] # 0x2769 (en: 'medium right parentheses ornament', DeepL translation) - - "❪": [t: "közepes lapos balra lapított zárójeles díszítés"] # 0x276a (en: 'medium flattened left parentheses ornament', DeepL translation) - - "❫": [t: "közepes lapos jobb oldali zárójeles dísz"] # 0x276b (en: 'medium flattened right parentheses ornament', DeepL translation) - - "❬": [t: "közepes balra mutató szögletes zárójeles dísz"] # 0x276c (en: 'medium left-pointing angle bracket ornament', DeepL translation) - - "❭": [t: "közepes jobbra mutató szögletű konzolos díszítés"] # 0x276d (en: 'medium right-pointing angle bracket ornament', DeepL translation) - - "❮": [t: "nehéz balra mutató szögletes idézőjeles dísz"] # 0x276e (en: 'heavy left-pointing angle quotation mark ornament', DeepL translation) - - "❯": [t: "nehéz, jobbra mutató szögletes idézőjel díszítés"] # 0x276f (en: 'heavy right-pointing angle quotation mark ornament', DeepL translation) - - "❰": [t: "nehéz balra mutató szögletes zárójeles dísz"] # 0x2770 (en: 'heavy left-pointing angle bracket ornament', DeepL translation) - - "❱": [t: "nehéz, jobbra mutató szögletes konzolos díszítés"] # 0x2771 (en: 'heavy right-pointing angle bracket ornament', DeepL translation) - - "❲": [t: "világos bal oldali teknőspáncél zárójeles dísz"] # 0x2772 (en: 'light left tortoise shell bracket ornament', DeepL translation) - - "❳": [t: "világos jobb oldali teknőspáncél zárójel dísz"] # 0x2773 (en: 'light right tortoise shell bracket ornament', DeepL translation) - - "❴": [t: "közepes bal oldali zárójeles dísz"] # 0x2774 (en: 'medium left brace ornament', DeepL translation) - - "❵": [t: "közepes jobb oldali zárójeles díszítés"] # 0x2775 (en: 'medium right brace ornament', DeepL translation) - - "❶": [t: "fekete bekarikázott egy"] # 0x2776 (en: 'black circled one', DeepL translation) - - "❷": [t: "fekete körözött kettő"] # 0x2777 (en: 'black circled two', DeepL translation) - - "❸": [t: "fekete kör alakú háromszög"] # 0x2778 (en: 'black circled three', DeepL translation) - - "❹": [t: "fekete karikázott négyes"] # 0x2779 (en: 'black circled four', DeepL translation) - - "❺": [t: "fekete bekarikázott ötös"] # 0x277a (en: 'black circled five', DeepL translation) - - "❻": [t: "fekete bekarikázott hatos"] # 0x277b (en: 'black circled six', DeepL translation) - - "❼": [t: "fekete karikázott hét"] # 0x277c (en: 'black circled seven', DeepL translation) - - "❽": [t: "fekete karikázott at"] # 0x277d (en: 'black circled eight', DeepL translation) - - "❾": [t: "fekete bekarikázott kilences"] # 0x277e (en: 'black circled nine', DeepL translation) - - "❿": [t: "fekete bekarikázott tízes"] # 0x277f (en: 'black circled ten', DeepL translation) - - "➀": [t: "bekarikázott sans serif egy"] # 0x2780 (en: 'circled sans serif one', DeepL translation) - - "➁": [t: "bekarikázott sans serif kettes"] # 0x2781 (en: 'circled sans serif two', DeepL translation) - - "➂": [t: "bekarikázott sans serif hármas"] # 0x2782 (en: 'circled sans serif three', DeepL translation) - - "➃": [t: "bekarikázott sans serif négyes"] # 0x2783 (en: 'circled sans serif four', DeepL translation) - - "➄": [t: "bekarikázott sans serif ötös"] # 0x2784 (en: 'circled sans serif five', DeepL translation) - - "➅": [t: "bekarikázott sans serif hatos"] # 0x2785 (en: 'circled sans serif six', DeepL translation) - - "➆": [t: "bekarikázott sans serif hetes"] # 0x2786 (en: 'circled sans serif seven', DeepL translation) - - "➇": [t: "bekarikázott sans serif at"] # 0x2787 (en: 'circled sans serif eight', DeepL translation) - - "➈": [t: "bekarikázott sans serif kilenc"] # 0x2788 (en: 'circled sans serif nine', DeepL translation) - - "➉": [t: "bekarikázott sans serif tízes"] # 0x2789 (en: 'circled sans serif ten', DeepL translation) - - "➊": [t: "fekete karikázott sans serif egy"] # 0x278a (en: 'black circled sans serif one', DeepL translation) - - "➋": [t: "fekete karikázott sans serif kettes"] # 0x278b (en: 'black circled sans serif two', DeepL translation) - - "➌": [t: "fekete karikázott sans serif három"] # 0x278c (en: 'black circled sans serif three', DeepL translation) - - "➍": [t: "fekete karikázott sans serif négyes"] # 0x278d (en: 'black circled sans serif four', DeepL translation) - - "➎": [t: "fekete bekarikázott sans serif ötös"] # 0x278e (en: 'black circled sans serif five', DeepL translation) - - "➏": [t: "fekete bekarikázott sans serif hatos"] # 0x278f (en: 'black circled sans serif six', DeepL translation) - - "➐": [t: "fekete karikázott sans serif hét"] # 0x2790 (en: 'black circled sans serif seven', DeepL translation) - - "➑": [t: "fekete bekarikázott sans serif at"] # 0x2791 (en: 'black circled sans serif eight', DeepL translation) - - "➒": [t: "fekete karikázott sans serif kilenc"] # 0x2792 (en: 'black circled sans serif nine', DeepL translation) - - "➓": [t: "fekete bekarikázott szeriusz nélküli tízes"] # 0x2793 (en: 'black circled sans serif ten', DeepL translation) - - "➔": [t: "nehéz, széles fejű jobbra mutató nyíl"] # 0x2794 (en: 'heavy wide-headed right arrow', DeepL translation) - - "➕": [t: "nehéz plusz jel"] # 0x2795 (en: 'heavy plus sign', DeepL translation) - - "➖": [t: "nehéz mínuszjel"] # 0x2796 (en: 'heavy minus sign', DeepL translation) - - "➗": [t: "nehéz osztásjel"] # 0x2797 (en: 'heavy division sign', DeepL translation) - - "➘": [t: "nehéz délkeleti nyíl"] # 0x2798 (en: 'heavy south east arrow', DeepL translation) - - "➙": [t: "nehéz jobbra mutató nyíl"] # 0x2799 (en: 'heavy right arrow', DeepL translation) - - "➚": [t: "nehéz északkeleti nyíl"] # 0x279a (en: 'heavy north east arrow', DeepL translation) - - "➛": [t: "vázlatpont jobbra nyíl"] # 0x279b (en: 'drafting point right arrow', DeepL translation) - - "➜": [t: "nehéz, kerek végű jobb oldali nyílvessző"] # 0x279c (en: 'heavy round-tipped right arrow', DeepL translation) - - "➝": [t: "háromszög fejű jobbra mutató nyíl"] # 0x279d (en: 'triangle-headed right arrow', DeepL translation) - - "➞": [t: "nagy háromszög fejű jobbra mutató nyíl"] # 0x279e (en: 'heavy triangle-headed right arrow', DeepL translation) - - "➟": [t: "szaggatott háromszögfejű jobbra mutató nyíl"] # 0x279f (en: 'dashed triangle-headed right arrow', DeepL translation) - - "➠": [t: "súlyos szaggatott háromszögfejű jobbra mutató nyíl"] # 0x27a0 (en: 'heavy dashed triangle-headed right arrow', DeepL translation) - - "➡": [t: "fekete jobbra mutató nyíl"] # 0x27a1 (en: 'black right arrow', DeepL translation) - - "➢": [t: "három d felső világító jobb nyíl"] # 0x27a2 (en: 'three d top lighted right arrow', DeepL translation) - - "➣": [t: "három d alsó világító jobb nyíl"] # 0x27a3 (en: 'three d bottom lighted right arrow', DeepL translation) - - "➤": [t: "fekete jobbra mutató nyílhegy"] # 0x27a4 (en: 'black right arrowhead', DeepL translation) - - "➥": [t: "nehéz fekete íves lefelé és jobbra mutató nyíl"] # 0x27a5 (en: 'heavy black curved down and right arrow', DeepL translation) - - "➦": [t: "nehéz fekete ívelt felfelé és jobbra mutató nyíl"] # 0x27a6 (en: 'heavy black curved up and right arrow', DeepL translation) - - "➧": [t: "guggoló fekete jobbra nyíl"] # 0x27a7 (en: 'squat black right arrow', DeepL translation) - - "➨": [t: "nehéz homorú hegyű fekete jobbra mutató nyíl"] # 0x27a8 (en: 'heavy concave-pointed black right arrow', DeepL translation) - - "➩": [t: "jobbra árnyékolt fehér jobb nyíl"] # 0x27a9 (en: 'right-shaded white right arrow', DeepL translation) - - "➪": [t: "balra árnyékolt fehér jobb oldali nyíl"] # 0x27aa (en: 'left-shaded white right arrow', DeepL translation) - - "➫": [t: "hátrahajló árnyékolt fehér jobbra mutató nyíl"] # 0x27ab (en: 'back-tilted shadowed white right arrow', DeepL translation) - - "➬": [t: "elölről dőlő árnyékolt fehér jobbra mutató nyíl"] # 0x27ac (en: 'front-tilted shadowed white right arrow', DeepL translation) - - "➭": [t: "erős jobb alsó árnyékos fehér jobb nyíl"] # 0x27ad (en: 'heavy lower right-shadowed white right arrow', DeepL translation) - - "➮": [t: "nehéz jobb felső árnyékos fehér jobb nyíl"] # 0x27ae (en: 'heavy upper right-shadowed white right arrow', DeepL translation) - - "➯": [t: "rovátkolt alsó jobbra-árnyékolt fehér jobbra nyíl"] # 0x27af (en: 'notched lower right-shadowed white right arrow', DeepL translation) - - "➱": [t: "rovátkolt jobb felső árnyékos fehér jobb nyíl"] # 0x27b1 (en: 'notched upper right-shadowed white right arrow', DeepL translation) - - "➲": [t: "bekarikázott nehéz fehér jobb oldali nyíl"] # 0x27b2 (en: 'circled heavy white right arrow', DeepL translation) - - "➳": [t: "fehér tollas jobbra mutató nyíl"] # 0x27b3 (en: 'white-feathered right arrow', DeepL translation) - - "➴": [t: "fekete tollas délkeleti nyíl"] # 0x27b4 (en: 'black-feathered south east arrow', DeepL translation) - - "➵": [t: "fekete tollas jobbra mutató nyíl"] # 0x27b5 (en: 'black-feathered right arrow', DeepL translation) - - "➶": [t: "fekete tollas északkeleti nyíl"] # 0x27b6 (en: 'black-feathered north east arrow', DeepL translation) - - "➷": [t: "nehéz fekete tollas délkeleti nyíl"] # 0x27b7 (en: 'heavy black-feathered south east arrow', DeepL translation) - - "➸": [t: "súlyos fekete tollas jobbra mutató nyíl"] # 0x27b8 (en: 'heavy black-feathered right arrow', DeepL translation) - - "➹": [t: "nehéz fekete tollas északkeleti íves nyíl"] # 0x27b9 (en: 'heavy black-feathered north east arrow', DeepL translation) - - "➺": [t: "teradrop-barázdált jobbra mutató nyíl"] # 0x27ba (en: 'teradrop-barbed right arrow', DeepL translation) - - "➻": [t: "nehéz, könnycsepp alakú jobb nyíl"] # 0x27bb (en: 'heavy teardrop-shanked right arrow', DeepL translation) - - "➼": [t: "ék alakú jobbra mutató nyíl"] # 0x27bc (en: 'wedge-tailed right arrow', DeepL translation) - - "➽": [t: "nehéz ékfarkú jobb nyíl"] # 0x27bd (en: 'heavy wedge-tailed right arrow', DeepL translation) - - "➾": [t: "nyitott körvonalú jobbra mutató nyíl"] # 0x27be (en: 'open-outlined right arrow', DeepL translation) - - "⟀": [t: "háromdimenziós szög"] # 0x27c0 (en: 'three dimensional angle', DeepL translation) - - "⟁": [t: "fehér háromszög, benne kis fehér háromszög"] # 0x27c1 (en: 'white triangle containing small white triangle', DeepL translation) - - "⟂": # 0x27c2 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "merőleges" # (en: 'perpendicular to', DeepL translation) - - "⟃": # 0x27c3 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "nyitott részhalmaza" # (en: 'an open subset of', DeepL translation) - - "⟄": # 0x27c4 - - test: - if: "$Verbosity!='Terse'" - then: [t: "az"] # (en: 'is', DeepL translation) - - t: "egy nyitott szuperszett" # (en: 'an open superset of', DeepL translation) - - "⟅": [t: "bal oldali s alakú zsákhatároló"] # 0x27c5 (en: 'left s-shaped bag delimiter', DeepL translation) - - "⟆": [t: "jobb oldali s alakú zsákhatár"] # 0x27c6 (en: 'right s-shaped bag delimiter', DeepL translation) - - "⟇": [t: "vagy ponttal belül"] # 0x27c7 (en: 'or with dot inside', DeepL translation) - - "⟈": [t: "fordított szolidus megelőző részhalmaz"] # 0x27c8 (en: 'reverse solidus preceding subset', DeepL translation) - - "⟉": [t: "szuperhalmaz megelőzi a szolidust"] # 0x27c9 (en: 'superset preceding solidus', DeepL translation) - - "⟊": [t: "függőleges sáv vízszintes vonallal"] # 0x27ca (en: 'vertical bar with horizontal stroke', DeepL translation) - - "⟋": [t: "matematikai emelkedő átló"] # 0x27cb (en: 'mathematical rising diagonal', DeepL translation) - - "⟌": [t: "hosszú osztás"] # 0x27cc (en: 'long division', DeepL translation) - - "⟍": [t: "matematikai zuhanó átló"] # 0x27cd (en: 'mathematical falling diagonal', DeepL translation) - - "⟎": [t: "négyzet logikai és"] # 0x27ce (en: 'squared logical and', DeepL translation) - - "⟏": [t: "négyzet alakú logikai vagy"] # 0x27cf (en: 'squared logical or', DeepL translation) - - "⟐": [t: "fehér rombusz középen lévő ponttal"] # 0x27d0 (en: 'white diamond with centered dot', DeepL translation) - - "⟑": [t: "és ponttal"] # 0x27d1 (en: 'and with dot', DeepL translation) - - "⟒": [t: "megnyíló elem"] # 0x27d2 (en: 'element of opening up', DeepL translation) - - "⟓": [t: "jobb alsó sarokban pont"] # 0x27d3 (en: 'lower right corner with dot', DeepL translation) - - "⟔": [t: "bal felső sarokban pont"] # 0x27d4 (en: 'upper left corner with dot', DeepL translation) - - "⟕": [t: "bal külső csatlakozás"] # 0x27d5 (en: 'left outer join', DeepL translation) - - "⟖": [t: "jobb külső csatlakozás"] # 0x27d6 (en: 'right outer join', DeepL translation) - - "⟗": [t: "teljes külső csatlakozás"] # 0x27d7 (en: 'full outer join', DeepL translation) - - "⟘": [t: "nagy felfelé mutató tákolmány"] # 0x27d8 (en: 'large up tack', DeepL translation) - - "⟙": [t: "nagy lefelé irányuló szög"] # 0x27d9 (en: 'large down tack', DeepL translation) - - "⟚": [t: "bal és jobb oldali kettős fordulópont"] # 0x27da (en: 'left and right double turnstile', DeepL translation) - - "⟛": [t: "bal és jobb oldali tüske"] # 0x27db (en: 'left and right tack', DeepL translation) - - "⟜": [t: "bal oldali multitérkép"] # 0x27dc (en: 'left multimap', DeepL translation) - - "⟝": [t: "hosszú jobb oldali szög"] # 0x27dd (en: 'long right tack', DeepL translation) - - "⟞": [t: "hosszú bal oldali tákolmány"] # 0x27de (en: 'long left tack', DeepL translation) - - "⟟": [t: "felfelé mutató szög, fölötte körrel"] # 0x27df (en: 'up tack with circle above', DeepL translation) - - "⟠": [t: "vízszintes szabállyal osztott rozettával"] # 0x27e0 (en: 'lozenge divided by horizontal rule', DeepL translation) - - "⟡": [t: "fehér homorú oldalú rombusz"] # 0x27e1 (en: 'white concave sided diamond', DeepL translation) - - "⟢": [t: "fehér homorú oldalú rombusz bal oldali pipaccsal"] # 0x27e2 (en: 'white concave sided diamond with left tick', DeepL translation) - - "⟣": [t: "fehér homorú oldalú rombusz jobb oldali pipaccsal"] # 0x27e3 (en: 'white concave sided diamond with right tick', DeepL translation) - - "⟤": [t: "fehér négyzet bal oldali pipaccsal"] # 0x27e4 (en: 'white square with left tick', DeepL translation) - - "⟥": [t: "fehér négyzet jobb oldali pipaccsal"] # 0x27e5 (en: 'white square with right tick', DeepL translation) - - "⟦": [t: "bal oldali fehér szögletes zárójel"] # 0x27e6 (en: 'left white square bracket', DeepL translation) - - "⟧": [t: "jobb oldali fehér szögletes zárójel"] # 0x27e7 (en: 'right white square bracket', DeepL translation) - - "⟨": [t: "bal szögletes zárójel"] # 0x27e8 (en: 'left angle bracket', DeepL translation) - - "⟩": [t: "derékszögű zárójel"] # 0x27e9 (en: 'right angle bracket', DeepL translation) - - "⟪": [t: "bal dupla szögletes zárójel"] # 0x27ea (en: 'left double angle bracket', DeepL translation) - - "⟫": [t: "jobb oldali kettős szögletes zárójel"] # 0x27eb (en: 'right double angle bracket', DeepL translation) - - "⟬": [t: "bal oldali fehér teknőspáncél konzol"] # 0x27ec (en: 'left white tortoise shell bracket', DeepL translation) - - "⟭": [t: "jobb oldali fehér teknőspáncélos zárójel"] # 0x27ed (en: 'right white tortoise shell bracket', DeepL translation) - - "⟮": [t: "bal lapos zárójel"] # 0x27ee (en: 'left flattened parenthesis', DeepL translation) - - "⟯": [t: "jobb oldali lapos zárójel"] # 0x27ef (en: 'right flattened parenthesis', DeepL translation) - - "⟰": [t: "felfelé mutató négyes nyíl"] # 0x27f0 (en: 'up quadruple arrow', DeepL translation) - - "⟱": [t: "lefelé négyes nyíl"] # 0x27f1 (en: 'down quadruple arrow', DeepL translation) - - "⟲": [t: "az óramutató járásával ellentétes irányú réses környíl"] # 0x27f2 (en: 'anticlockwise gapped circle arrow', DeepL translation) - - "⟳": [t: "az óramutató járásával megegyező irányú, hiányos kör alakú nyíl"] # 0x27f3 (en: 'clockwise gapped circle arrow', DeepL translation) - - "⟴": [t: "jobbra nyíl bekarikázott plusszal"] # 0x27f4 (en: 'right arrow with circled plus', DeepL translation) - - "⟵": [t: "hosszú bal nyíl"] # 0x27f5 (en: 'long left arrow', DeepL translation) - - "⟶": [t: "hosszú jobbra nyíl"] # 0x27f6 (en: 'long right arrow', DeepL translation) - - "⟷": [t: "hosszú balra jobbra nyíl"] # 0x27f7 (en: 'long left right arrow', DeepL translation) - - "⟸": [t: "hosszú bal oldali kettős nyíl"] # 0x27f8 (en: 'long left double arrow', DeepL translation) - - "⟹": [t: "implikálja"] # 0x27f9 (en: 'implies', DeepL translation) - - "⟺": [t: "ha és csak ha"] # 0x27fa (en: 'if and only if', DeepL translation) - - "⟻": [t: "hosszú balra mutató nyíl vonaltól"] # 0x27fb (en: 'long left arrow from bar', DeepL translation) - - "⟼": [t: "hosszú jobbra mutató nyíl a sávból"] # 0x27fc (en: 'long right arrow from bar', DeepL translation) - - "⟽": [t: "hosszú bal kettős nyíl a sávból"] # 0x27fd (en: 'long left double arrow from bar', DeepL translation) - - "⟾": [t: "hosszú jobbra kettős nyíl vonaltól"] # 0x27fe (en: 'long right double arrow from bar', DeepL translation) - - "⟿": [t: "hosszú jobb oldali szaggatott nyíl"] # 0x27ff (en: 'long right squiggle arrow', DeepL translation) - - "⤀": [t: "jobb oldali kétfejű nyíl függőleges vonallal"] # 0x2900 (en: 'right two headed arrow with vertical stroke', DeepL translation) - - "⤁": [t: "jobb oldali kétfejű nyíl dupla függőleges vonallal"] # 0x2901 (en: 'right two headed arrow with double vertical stroke', DeepL translation) - - "⤂": [t: "bal kettős nyíl függőleges vonallal"] # 0x2902 (en: 'left double arrow with vertical stroke', DeepL translation) - - "⤃": [t: "jobb oldali kétfejű nyíl függőleges vonallal"] # 0x2903 (en: 'right double arrow with vertical stroke', DeepL translation) - - "⤄": [t: "balra jobbra kettős nyíl függőleges vonallal"] # 0x2904 (en: 'left right double arrow with vertical stroke', DeepL translation) - - "⤅": [t: "jobb kétfejű nyílvessző a rúdról"] # 0x2905 (en: 'right two headed arrow from bar', DeepL translation) - - "⤆": [t: "bal dupla nyíl a sávból"] # 0x2906 (en: 'left double arrow from bar', DeepL translation) - - "⤇": [t: "jobb oldali kettős nyíl a sávból"] # 0x2907 (en: 'right double arrow from bar', DeepL translation) - - "⤈": [t: "lefelé mutató nyíl vízszintes vonallal"] # 0x2908 (en: 'down arrow with horizontal stroke', DeepL translation) - - "⤉": [t: "felfelé nyíl vízszintes vonallal"] # 0x2909 (en: 'up arrow with horizontal stroke', DeepL translation) - - "⤊": [t: "fel hármas nyíl"] # 0x290a (en: 'up triple arrow', DeepL translation) - - "⤋": [t: "hármas nyíl lefelé"] # 0x290b (en: 'down triple arrow', DeepL translation) - - "⤌": [t: "bal oldali kétfejű nyílvessző"] # 0x290c (en: 'left double dash arrow', DeepL translation) - - "⤍": [t: "jobb oldali kettős kötőjeles nyíl"] # 0x290d (en: 'right double dash arrow', DeepL translation) - - "⤎": [t: "bal hármas kötőjeles nyíl"] # 0x290e (en: 'left triple dash arrow', DeepL translation) - - "⤏": [t: "jobb oldali hármas kötőjeles nyíl"] # 0x290f (en: 'right triple dash arrow', DeepL translation) - - "⤐": [t: "jobb kétfejű hármas kötőjeles nyíl"] # 0x2910 (en: 'right two headed triple dash arrow', DeepL translation) - - "⤑": [t: "jobbra nyíl szaggatott szárral"] # 0x2911 (en: 'right arrow with dotted stem', DeepL translation) - - "⤒": [t: "felfelé nyíl a bárra"] # 0x2912 (en: 'up arrow to bar', DeepL translation) - - "⤓": [t: "lefelé mutató nyíl a sávra"] # 0x2913 (en: 'down arrow to bar', DeepL translation) - - "⤔": [t: "jobb nyíl farokkal és függőleges vonallal"] # 0x2914 (en: 'right arrow with tail and vertical stroke', DeepL translation) - - "⤕": [t: "jobbra mutató nyíl farokkal és dupla függőleges vonallal"] # 0x2915 (en: 'right arrow with tail and double vertical stroke', DeepL translation) - - "⤖": [t: "jobb oldali kétfejű nyíl farokkal"] # 0x2916 (en: 'right two headed arrow with tail', DeepL translation) - - "⤗": [t: "jobb kétfejű nyílvessző, farokkal, függőleges vonallal"] # 0x2917 (en: 'right two headed arrow with tail with vertical stroke', DeepL translation) - - "⤘": [t: "jobb oldali kétfejű nyíl, farokkal, dupla függőleges vonallal"] # 0x2918 (en: 'right two headed arrow with tail with double vertical stroke', DeepL translation) - - "⤙": [t: "bal nyíl farokkal"] # 0x2919 (en: 'left arrow tail', DeepL translation) - - "⤚": [t: "jobbra nyíl farok"] # 0x291a (en: 'right arrow tail', DeepL translation) - - "⤛": [t: "bal kettős nyíl farok"] # 0x291b (en: 'left double arrow tail', DeepL translation) - - "⤜": [t: "jobb dupla nyíl farok"] # 0x291c (en: 'right double arrow tail', DeepL translation) - - "⤝": [t: "balra nyíl a kitöltött rombuszra"] # 0x291d (en: 'left arrow to filled diamond', DeepL translation) - - "⤞": [t: "jobb nyíl kitöltött gyémántra"] # 0x291e (en: 'right arrow to filled diamond', DeepL translation) - - "⤟": [t: "bal nyíl a sávtól a kitöltött rombuszig"] # 0x291f (en: 'left arrow from bar to filled diamond', DeepL translation) - - "⤠": [t: "jobbra mutató nyíl a sávtól a kitöltött rombuszig"] # 0x2920 (en: 'right arrow from bar to filled diamond', DeepL translation) - - "⤡": [t: "északnyugati és délkeleti nyíl"] # 0x2921 (en: 'north west and south east arrow', DeepL translation) - - "⤢": [t: "északkeleti és délnyugati nyíl"] # 0x2922 (en: 'north east and south west arrow', DeepL translation) - - "⤣": [t: "északnyugati nyíl horoggal"] # 0x2923 (en: 'north west arrow with hook', DeepL translation) - - "⤤": [t: "északkeleti nyílhegy horoggal"] # 0x2924 (en: 'north east arrow with hook', DeepL translation) - - "⤥": [t: "délkeleti nyíl horoggal"] # 0x2925 (en: 'south east arrow with hook', DeepL translation) - - "⤦": [t: "délnyugati nyíl horoggal"] # 0x2926 (en: 'south west arrow with hook', DeepL translation) - - "⤧": [t: "északnyugati nyíl és északkeleti nyíl"] # 0x2927 (en: 'north west arrow and north east arrow', DeepL translation) - - "⤨": [t: "északkeleti nyíl és délkeleti nyíl"] # 0x2928 (en: 'north east arrow and south east arrow', DeepL translation) - - "⤩": [t: "délkeleti nyíl és délnyugati nyíl"] # 0x2929 (en: 'south east arrow and south west arrow', DeepL translation) - - "⤪": [t: "délnyugati nyíl és északnyugati nyíl"] # 0x292a (en: 'south west arrow and north west arrow', DeepL translation) - - "⤫": [t: "emelkedő átló keresztezi a csökkenő átlót"] # 0x292b (en: 'rising diagonal crossing falling diagonal', DeepL translation) - - "⤬": [t: "csökkenő átló keresztezi az emelkedő átlót"] # 0x292c (en: 'falling diagonal crossing rising diagonal', DeepL translation) - - "⤭": [t: "délkeleti nyíl keresztezi az északkeleti nyilat"] # 0x292d (en: 'south east arrow crossing north east arrow', DeepL translation) - - "⤮": [t: "északkeleti nyilat keresztező délkeleti nyíl"] # 0x292e (en: 'north east arrow crossing south east arrow', DeepL translation) - - "⤯": [t: "zuhanó átlós keresztező északkeleti nyíl"] # 0x292f (en: 'falling diagonal crossing north east arrow', DeepL translation) - - "⤰": [t: "emelkedő átlós keresztező délkeleti nyíl"] # 0x2930 (en: 'rising diagonal crossing south east arrow', DeepL translation) - - "⤱": [t: "északkeleti nyíl keresztezi az északnyugati nyilat"] # 0x2931 (en: 'north east arrow crossing north west arrow', DeepL translation) - - "⤲": [t: "északnyugati nyilat keresztező északkeleti nyíl"] # 0x2932 (en: 'north west arrow crossing north east arrow', DeepL translation) - - "⤳": [t: "közvetlenül jobbra mutató hullámzó nyíl"] # 0x2933 (en: 'wave arrow pointing directly right', DeepL translation) - - "⤴": [t: "jobbra mutató, majd felfelé ívelő nyíl"] # 0x2934 (en: 'arrow pointing right then curving up', DeepL translation) - - "⤵": [t: "jobbra mutató, majd lefelé ívelő nyíl"] # 0x2935 (en: 'arrow pointing right then curving down', DeepL translation) - - "⤶": [t: "lefelé mutató, majd balra ívelő nyíl"] # 0x2936 (en: 'arrow pointing down then curving left', DeepL translation) - - "⤷": [t: "lefelé mutató, majd jobbra ívelő nyíl"] # 0x2937 (en: 'arrow pointing down then curving right', DeepL translation) - - "⤸": [t: "jobb oldalsó ívű jobb oldali nyíl az óramutató járásával megegyező irányban"] # 0x2938 (en: 'right side arc clockwise arrow', DeepL translation) - - "⤹": [t: "bal oldali íves, az óramutató járásával ellentétes irányú nyíl"] # 0x2939 (en: 'left side arc anticlockwise arrow', DeepL translation) - - "⤺": [t: "felső íves, az óramutató járásával ellentétes irányú nyíl"] # 0x293a (en: 'top arc anticlockwise arrow', DeepL translation) - - "⤻": [t: "alsó íves, az óramutató járásával ellentétes irányú nyíl"] # 0x293b (en: 'bottom arc anticlockwise arrow', DeepL translation) - - "⤼": [t: "felső íves óramutató járásával megegyező irányú nyíl mínuszokkal"] # 0x293c (en: 'top arc clockwise arrow with minus', DeepL translation) - - "⤽": [t: "felső ív az óramutató járásával ellentétes irányú nyíl plusszal"] # 0x293d (en: 'top arc anticlockwise arrow with plus', DeepL translation) - - "⤾": [t: "jobb alsó félköríves, az óramutató járásával megegyező irányú nyíl"] # 0x293e (en: 'lower right semicircular clockwise arrow', DeepL translation) - - "⤿": [t: "balra lent félköríves, az óramutató járásával ellentétes irányú nyíl"] # 0x293f (en: 'lower left semicircular anticlockwise arrow', DeepL translation) - - "⥀": [t: "az óramutató járásával ellentétes irányú zárt kör nyíl"] # 0x2940 (en: 'anticlockwise closed circle arrow', DeepL translation) - - "⥁": [t: "az óramutató járásával megegyezően zárt kör alakú nyíl"] # 0x2941 (en: 'clockwise closed circle arrow', DeepL translation) - - "⥂": [t: "jobb nyíl rövid bal nyíl felett"] # 0x2942 (en: 'right arrow above short left arrow', DeepL translation) - - "⥃": [t: "bal nyíl rövid jobb nyíl felett"] # 0x2943 (en: 'left arrow above short right arrow', DeepL translation) - - "⥄": [t: "rövid jobb nyíl a bal nyíl felett"] # 0x2944 (en: 'short right arrow above left arrow', DeepL translation) - - "⥅": [t: "jobbra mutató nyíl, plusszal alul"] # 0x2945 (en: 'right arrow with plus below', DeepL translation) - - "⥆": [t: "bal nyíl plusszal alul"] # 0x2946 (en: 'left arrow with plus below', DeepL translation) - - "⥇": [t: "jobbra mutató nyíl x-en keresztül"] # 0x2947 (en: 'right arrow through x', DeepL translation) - - "⥈": [t: "balra jobbra nyíl körön keresztül"] # 0x2948 (en: 'left right arrow through circle', DeepL translation) - - "⥉": [t: "felfelé kétfejű nyíl a körből"] # 0x2949 (en: 'up two headed arrow from circle', DeepL translation) - - "⥊": [t: "bal horog felfelé jobb horog lefelé szigony"] # 0x294a (en: 'left barb up right barb down harpoon', DeepL translation) - - "⥋": [t: "bal oldali tüske lefelé jobb oldali tüske felfelé szigony"] # 0x294b (en: 'left barb down right barb up harpoon', DeepL translation) - - "⥌": [t: "felfelé szúró jobbra lefelé szúró balra szigor"] # 0x294c (en: 'up barb right down barb left harpoon', DeepL translation) - - "⥍": [t: "fel szöges balra le szöges jobbra szigony"] # 0x294d (en: 'up barb left down barb right harpoon', DeepL translation) - - "⥎": [t: "bal tüske felfelé jobb tüske felfelé szigony"] # 0x294e (en: 'left barb up right barb up harpoon', DeepL translation) - - "⥏": [t: "fel szúró jobbra le szúró jobbra szigony"] # 0x294f (en: 'up barb right down barb right harpoon', DeepL translation) - - "⥐": [t: "bal horog lefelé jobb horog lefelé szigony"] # 0x2950 (en: 'left barb down right barb down harpoon', DeepL translation) - - "⥑": [t: "fel szúró balra le szúró balra szigony"] # 0x2951 (en: 'up barb left down barb left harpoon', DeepL translation) - - "⥒": [t: "bal szigony a szálkával felfelé a rúdig"] # 0x2952 (en: 'left harpoon with barb up to bar', DeepL translation) - - "⥓": [t: "jobb szigony szúróval felfelé díszítéssel"] # 0x2953 (en: 'right harpoon with barb up to bar', DeepL translation) - - "⥔": [t: "felfelé szigony szúróvas jobbra a vonaltól"] # 0x2954 (en: 'up harpoon with barb right to bar', DeepL translation) - - "⥕": [t: "lefelé irányuló szigony, jobbra a bárka mellett"] # 0x2955 (en: 'down harpoon with barb right to bar', DeepL translation) - - "⥖": [t: "bal oldali szigony szúrószöggel lefelé a sávig"] # 0x2956 (en: 'left harpoon with barb down to bar', DeepL translation) - - "⥗": [t: "jobb oldali szigony, lefelé irányuló tüskével a rúdig"] # 0x2957 (en: 'right harpoon with barb down to bar', DeepL translation) - - "⥘": [t: "felfelé szigony, balra szúrószöggel"] # 0x2958 (en: 'up harpoon with barb left to bar', DeepL translation) - - "⥙": [t: "lefelé szigony szúróvas bal oldali vonallal"] # 0x2959 (en: 'down harpoon with barb left to bar', DeepL translation) - - "⥚": [t: "bal szigony, szálkával a sávból felfelé"] # 0x295a (en: 'left harpoon with barb up from bar', DeepL translation) - - "⥛": [t: "jobb szigony a sávból felfelé álló tüskével"] # 0x295b (en: 'right harpoon with barb up from bar', DeepL translation) - - "⥜": [t: "fel szigony felfelé szúróvas jobbra a rúdtól"] # 0x295c (en: 'up harpoon with barb right from bar', DeepL translation) - - "⥝": [t: "lefelé szigony a vonaltól jobbra lévő tüskével"] # 0x295d (en: 'down harpoon with barb right from bar', DeepL translation) - - "⥞": [t: "bal szigony a rúdról lefelé irányuló szúróhoroggal"] # 0x295e (en: 'left harpoon with barb down from bar', DeepL translation) - - "⥟": [t: "jobb szigony a rúdtól lefelé lévő tüskével"] # 0x295f (en: 'right harpoon with barb down from bar', DeepL translation) - - "⥠": [t: "felfelé szigony, a vonaltól balra lévő tüskével"] # 0x2960 (en: 'up harpoon with barb left from bar', DeepL translation) - - "⥡": [t: "lefelé irányuló szigony, tüskével a sávtól balra"] # 0x2961 (en: 'down harpoon with barb left from bar', DeepL translation) - - "⥢": [t: "bal szigony szúróval felfelé bal szigony felett bal szigony szúróval lefelé"] # 0x2962 (en: 'left harpoon with barb up above left harpoon with barb down', DeepL translation) - - "⥣": [t: "felfelé szigony bal oldali szúróval a felfelé szigony jobb oldali szúróval"] # 0x2963 (en: 'up harpoon with barb left beside up harpoon with barb right', DeepL translation) - - "⥤": [t: "jobb szigony felfelé, jobb szigony felett jobb szigony lefelé"] # 0x2964 (en: 'right harpoon with barb up above right harpoon with barb down', DeepL translation) - - "⥥": [t: "lefelé mutató szigony szúróval balra a lefelé mutató szigony szúróval jobbra mellett"] # 0x2965 (en: 'down harpoon with barb left beside down harpoon with barb right', DeepL translation) - - "⥦": [t: "bal szigony szúróval felfelé jobb szigony szúróval felfelé felett"] # 0x2966 (en: 'left harpoon with barb up above right harpoon with barb up', DeepL translation) - - "⥧": [t: "bal szigony szúróval lefelé jobb szigony szúróval lefelé felett"] # 0x2967 (en: 'left harpoon with barb down above right harpoon with barb down', DeepL translation) - - "⥨": [t: "jobb oldali szigony szúróval felfelé a bal oldali szigony szúróval felfelé felett"] # 0x2968 (en: 'right harpoon with barb up above left harpoon with barb up', DeepL translation) - - "⥩": [t: "jobb szigony szúróval lefelé a bal szigony szúróval lefelé felett"] # 0x2969 (en: 'right harpoon with barb down above left harpoon with barb down', DeepL translation) - - "⥪": [t: "bal szigony szúróval felfelé a hosszú kötőjel felett"] # 0x296a (en: 'left harpoon with barb up above long dash', DeepL translation) - - "⥫": [t: "bal szigony szúróval lefelé hosszú kötőjel alatt"] # 0x296b (en: 'left harpoon with barb down below long dash', DeepL translation) - - "⥬": [t: "jobb szigony, hosszú kötőjel fölött felfelé mutató tüskével"] # 0x296c (en: 'right harpoon with barb up above long dash', DeepL translation) - - "⥭": [t: "jobb oldali szigony lefelé irányuló tüskével a hosszú kötőjel alatt"] # 0x296d (en: 'right harpoon with barb down below long dash', DeepL translation) - - "⥮": [t: "felfelé szigony balra szúrással a lefelé szigony jobbra szúrással mellett"] # 0x296e (en: 'up harpoon with barb left beside down harpoon with barb right', DeepL translation) - - "⥯": [t: "lefelé irányuló szigony balra a felfelé irányuló szigony jobbra irányuló szigony mellett"] # 0x296f (en: 'down harpoon with barb left beside up harpoon with barb right', DeepL translation) - - "⥰": [t: "jobb oldali kettős nyíl lekerekített fejjel"] # 0x2970 (en: 'right double arrow with rounded head', DeepL translation) - - "⥱": [t: "egyenlőségjel felett jobbra mutató nyíl"] # 0x2971 (en: 'equals above right arrow', DeepL translation) - - "⥲": [t: "tilde operátor a jobbra mutató nyíl fölött"] # 0x2972 (en: 'tilde operator above right arrow', DeepL translation) - - "⥳": [t: "bal nyíl a tilde operátor felett"] # 0x2973 (en: 'left arrow above tilde operator', DeepL translation) - - "⥴": [t: "jobb nyíl a tilde operátor felett"] # 0x2974 (en: 'right arrow above tilde operator', DeepL translation) - - "⥵": [t: "jobbra nyíl felett majdnem egyenlő"] # 0x2975 (en: 'right arrow above almost equal to', DeepL translation) - - "⥶": [t: "kevesebb, mint a fenti bal nyíl"] # 0x2976 (en: 'less than above left arrow', DeepL translation) - - "⥷": [t: "bal nyíl át kevesebb mint"] # 0x2977 (en: 'left arrow through less than', DeepL translation) - - "⥸": [t: "nagyobb, mint a jobb oldali nyíl fölött"] # 0x2978 (en: 'greater than above right arrow', DeepL translation) - - "⥹": [t: "részhalmaz felett jobbra nyíl"] # 0x2979 (en: 'subset above right arrow', DeepL translation) - - "⥺": [t: "bal nyíl alatt részhalmaz"] # 0x297a (en: 'left arrow through subset', DeepL translation) - - "⥻": [t: "szuperhalmaz felett balra nyíl"] # 0x297b (en: 'superset above left arrow', DeepL translation) - - "⥼": [t: "bal hal farka"] # 0x297c (en: 'left fish tail', DeepL translation) - - "⥽": [t: "jobb oldali halfarok"] # 0x297d (en: 'right fish tail', DeepL translation) - - "⥾": [t: "felfelé hal farka"] # 0x297e (en: 'up fish tail', DeepL translation) - - "⥿": [t: "lefelé halfarok"] # 0x297f (en: 'down fish tail', DeepL translation) - - "⦀": [t: "háromszoros függőleges sávhatároló"] # 0x2980 (en: 'triple vertical bar delimiter', DeepL translation) - - "⦁": [t: "z jelölés folt"] # 0x2981 (en: 'z notation spot', DeepL translation) - - "⦂": [t: "z jelölés típusú kettőspont"] # 0x2982 (en: 'z notation type colon', DeepL translation) - - "⦃": [t: "bal fehér zárójel"] # 0x2983 (en: 'left white brace', DeepL translation) - - "⦄": [t: "jobb oldali fehér zárójel"] # 0x2984 (en: 'right white brace', DeepL translation) - - "⦅": [t: "bal fehér zárójel"] # 0x2985 (en: 'left white parenthesis', DeepL translation) - - "⦆": [t: "jobb oldali fehér zárójel"] # 0x2986 (en: 'right white parenthesis', DeepL translation) - - "⦇": [t: "z jelölés bal oldali kép zárójel"] # 0x2987 (en: 'z notation left image bracket', DeepL translation) - - "⦈": [t: "z jelölés jobb oldali képtartó zárójel"] # 0x2988 (en: 'z notation right image bracket', DeepL translation) - - "⦉": [t: "z jelölés bal oldali kötőjel"] # 0x2989 (en: 'z notation left binding bracket', DeepL translation) - - "⦊": [t: "z jelölés jobb kötőjeles zárójel"] # 0x298a (en: 'z notation right binding bracket', DeepL translation) - - "⦋": [t: "bal szögletes zárójel aláhúzással"] # 0x298b (en: 'left square bracket with underbar', DeepL translation) - - "⦌": [t: "jobb oldali szögletes zárójel alulcsíkkal"] # 0x298c (en: 'right square bracket with underbar', DeepL translation) - - "⦍": [t: "bal szögletes zárójel felső sarkában pipa"] # 0x298d (en: 'left square bracket with tick in top corner', DeepL translation) - - "⦎": [t: "jobb oldali szögletes zárójel alsó sarkában pipa"] # 0x298e (en: 'right square bracket with tick in bottom corner', DeepL translation) - - "⦏": [t: "bal szögletes zárójel alsó sarkában pipa"] # 0x298f (en: 'left square bracket with tick in bottom corner', DeepL translation) - - "⦐": [t: "jobb oldali szögletes zárójel, a felső sarokban pipa"] # 0x2990 (en: 'right square bracket with tick in top corner', DeepL translation) - - "⦑": [t: "bal szögletes zárójel ponttal"] # 0x2991 (en: 'left angle bracket with dot', DeepL translation) - - "⦒": [t: "jobb oldali szögletes zárójel ponttal"] # 0x2992 (en: 'right angle bracket with dot', DeepL translation) - - "⦓": [t: "bal ív kisebb, mint zárójel"] # 0x2993 (en: 'left arc less than bracket', DeepL translation) - - "⦔": [t: "jobb ív nagyobb mint zárójel"] # 0x2994 (en: 'right arc greater than bracket', DeepL translation) - - "⦕": [t: "dupla bal oldali ív nagyobb, mint zárójel "] # 0x2995 (en: 'double left arc greater than bracket', DeepL translation) - - "⦖": [t: "kettős jobbra mutató íves kevesebb mint zárójel"] # 0x2996 (en: 'double right arc less than bracket', DeepL translation) - - "⦗": [t: "bal fekete teknőspáncél zárójel"] # 0x2997 (en: 'left black tortoise shell bracket', DeepL translation) - - "⦘": [t: "jobb oldali fekete teknőspáncélos zárójel"] # 0x2998 (en: 'right black tortoise shell bracket', DeepL translation) - - "⦙": [t: "szaggatott kerítés"] # 0x2999 (en: 'dotted fence', DeepL translation) - - "⦚": [t: "függőleges cikkcakkos vonal"] # 0x299a (en: 'vertical zigzag line', DeepL translation) - - "⦛": [t: "mért szög nyílás balra"] # 0x299b (en: 'measured angle opening left', DeepL translation) - - "⦜": [t: "derékszögű változat négyzettel"] # 0x299c (en: 'right angle variant with square', DeepL translation) - - "⦝": [t: "mért derékszög ponttal"] # 0x299d (en: 'measured right angle with dot', DeepL translation) - - "⦞": [t: "szög s-sel belül"] # 0x299e (en: 'angle with s inside', DeepL translation) - - "⦟": [t: "hegyesszög"] # 0x299f (en: 'acute angle', DeepL translation) - - "⦠": [t: "gömbszög nyílás balra"] # 0x29a0 (en: 'spherical angle opening left', DeepL translation) - - "⦡": [t: "gömbszöget nyitó"] # 0x29a1 (en: 'spherical angle opening up', DeepL translation) - - "⦢": [t: "elfordított szög"] # 0x29a2 (en: 'turned angle', DeepL translation) - - "⦣": [t: "fordított szög"] # 0x29a3 (en: 'reversed angle', DeepL translation) - - "⦤": [t: "szög aláhúzott vonallal"] # 0x29a4 (en: 'angle with underbar', DeepL translation) - - "⦥": [t: "fordított szögjel aláhúzással"] # 0x29a5 (en: 'reversed angle with underbar', DeepL translation) - - "⦦": [t: "ferde szög felfelé nyíló"] # 0x29a6 (en: 'oblique angle opening up', DeepL translation) - - "⦧": [t: "ferde szög lefelé nyíló"] # 0x29a7 (en: 'oblique angle opening down', DeepL translation) - - "⦨": [t: "mért szög, felfelé és jobbra mutató nyílban végződő nyitott karral"] # 0x29a8 (en: 'measured angle with open arm ending in arrow pointing up and to the right', DeepL translation) - - "⦩": [t: "mért szög, nyitott karral, amely felfelé és balra mutató nyíllal végződik"] # 0x29a9 (en: 'measured angle with open arm ending in arrow pointing up and to the left', DeepL translation) - - "⦪": [t: "mért szög, lefelé és jobbra mutató nyílban végződő nyitott karral"] # 0x29aa (en: 'measured angle with open arm ending in arrow pointing down and to the right', DeepL translation) - - "⦫": [t: "mért szög, lefelé és balra mutató nyílban végződő nyitott karral"] # 0x29ab (en: 'measured angle with open arm ending in arrow pointing down and to the left', DeepL translation) - - "⦬": [t: "mért szög, nyitott karral, amely jobbra és felfelé mutató nyílban végződik"] # 0x29ac (en: 'measured angle with open arm ending in arrow pointing right and up', DeepL translation) - - "⦭": [t: "mért szög, balra és felfelé mutató nyílban végződő nyitott karral"] # 0x29ad (en: 'measured angle with open arm ending in arrow pointing left and up', DeepL translation) - - "⦮": [t: "mért szög, nyitott karral, amely jobbra és lefelé mutató nyíllal végződik"] # 0x29ae (en: 'measured angle with open arm ending in arrow pointing right and down', DeepL translation) - - "⦯": [t: "mért szög, balra és lefelé mutató nyílban végződő nyitott karral"] # 0x29af (en: 'measured angle with open arm ending in arrow pointing left and down', DeepL translation) - - "⦰": [t: "fordított üres halmaz"] # 0x29b0 (en: 'reversed empty set', DeepL translation) - - "⦱": [t: "üres halmaz overbarral"] # 0x29b1 (en: 'empty set with overbar', DeepL translation) - - "⦲": [t: "üres halmaz kis körrel a tetején"] # 0x29b2 (en: 'empty set with small circle above', DeepL translation) - - "⦳": [t: "üres halmaz jobbra mutató nyíllal fölötte"] # 0x29b3 (en: 'empty set with right arrow above', DeepL translation) - - "⦴": [t: "üres halmaz balra mutató nyíllal felül"] # 0x29b4 (en: 'empty set with left arrow above', DeepL translation) - - "⦵": [t: "kör vízszintes sávval"] # 0x29b5 (en: 'circle with horizontal bar', DeepL translation) - - "⦶": [t: "bekarikázott függőleges sáv"] # 0x29b6 (en: 'circled vertical bar', DeepL translation) - - "⦷": [t: "bekarikázott párhuzamos"] # 0x29b7 (en: 'circled parallel', DeepL translation) - - "⦸": [t: "bekarikázott fordított solidus"] # 0x29b8 (en: 'circled reverse solidus', DeepL translation) - - "⦹": [t: "bekarikázott merőleges"] # 0x29b9 (en: 'circled perpendicular', DeepL translation) - - "⦺": [t: "vízszintes sávval osztott körirat, felső fele függőleges sávval osztott"] # 0x29ba (en: 'circled divided by horizontal bar and top half divided by vertical bar', DeepL translation) - - "⦻": [t: "kör egymásra helyezett x-szel"] # 0x29bb (en: 'circle with superimposed x', DeepL translation) - - "⦼": [t: "bekarikázott, az óramutató járásával ellentétes irányban elforgatott osztójel"] # 0x29bc (en: 'circled anticlockwise rotated division sign', DeepL translation) - - "⦽": [t: "felfelé nyíl körön keresztül"] # 0x29bd (en: 'up arrow through circle', DeepL translation) - - "⦾": [t: "bekarikázott fehér golyó"] # 0x29be (en: 'circled white bullet', DeepL translation) - - "⦿": [t: "bekarikázott golyószám"] # 0x29bf (en: 'circled bullet', DeepL translation) - - "⧀": [t: "bekarikázott kevesebb, mint"] # 0x29c0 (en: 'circled less than', DeepL translation) - - "⧁": [t: "bekarikázott nagyobb, mint"] # 0x29c1 (en: 'circled greater than', DeepL translation) - - "⧂": [t: "kör kis körrel a jobb oldalon"] # 0x29c2 (en: 'circle with small circle to the right', DeepL translation) - - "⧃": [t: "kör két vízszintes vonással jobbra"] # 0x29c3 (en: 'circle with two horizontal strokes to the right', DeepL translation) - - "⧄": [t: "négyzet alakú emelkedő átlós átlós vonallal"] # 0x29c4 (en: 'squared rising diagonal slash', DeepL translation) - - "⧅": [t: "négyzetesen eső átlós átlós átlós átlós"] # 0x29c5 (en: 'squared falling diagonal slash', DeepL translation) - - "⧆": [t: "szögletes csillag"] # 0x29c6 (en: 'squared asterisk', DeepL translation) - - "⧇": [t: "négyzetes kis kör"] # 0x29c7 (en: 'squared small circle', DeepL translation) - - "⧈": [t: "négyzet alakú négyzet"] # 0x29c8 (en: 'squared square', DeepL translation) - - "⧉": [t: "két összekötött négyzet"] # 0x29c9 (en: 'two joined squares', DeepL translation) - - "⧊": [t: "háromszög pont felett"] # 0x29ca (en: 'triangle with dot above', DeepL translation) - - "⧋": [t: "háromszög aláhúzott vonallal"] # 0x29cb (en: 'triangle with underbar', DeepL translation) - - "⧌": [t: "s háromszögben"] # 0x29cc (en: 's in triangle', DeepL translation) - - "⧍": [t: "háromszög alul serifekkel"] # 0x29cd (en: 'triangle with serifs at bottom', DeepL translation) - - "⧎": [t: "jobb oldali háromszög bal oldali háromszög felett"] # 0x29ce (en: 'right triangle above left triangle', DeepL translation) - - "⧏": [t: "bal oldali háromszög függőleges vonallal"] # 0x29cf (en: 'left triangle beside vertical bar', DeepL translation) - - "⧐": [t: "jobb oldali háromszög mellett függőleges sáv"] # 0x29d0 (en: 'vertical bar beside right triangle', DeepL translation) - - "⧑": [t: "masni bal oldali fekete felével"] # 0x29d1 (en: 'bowtie with left half black', DeepL translation) - - "⧒": [t: "masni, jobb oldali fele fekete"] # 0x29d2 (en: 'bowtie with right half black', DeepL translation) - - "⧓": [t: "fekete masni"] # 0x29d3 (en: 'black bowtie', DeepL translation) - - "⧔": [t: "szorzók bal oldali felével fekete"] # 0x29d4 (en: 'times with left half black', DeepL translation) - - "⧕": [t: "szorzó, jobb oldali félfekete"] # 0x29d5 (en: 'times with right half black', DeepL translation) - - "⧖": [t: "fehér homokóra"] # 0x29d6 (en: 'white hourglass', DeepL translation) - - "⧗": [t: "fekete homokóra"] # 0x29d7 (en: 'black hourglass', DeepL translation) - - "⧘": [t: "bal oldali kacskaringós kerítés"] # 0x29d8 (en: 'left wiggly fence', DeepL translation) - - "⧙": [t: "jobb oldali kacskaringós kerítés"] # 0x29d9 (en: 'right wiggly fence', DeepL translation) - - "⧚": [t: "bal oldali dupla kacskaringós kerítés"] # 0x29da (en: 'left double wiggly fence', DeepL translation) - - "⧛": [t: "jobb oldali dupla kacskaringós kerítés"] # 0x29db (en: 'right double wiggly fence', DeepL translation) - - "⧜": [t: "hiányos végtelen"] # 0x29dc (en: 'incomplete infinity', DeepL translation) - - "⧝": [t: "döntetlen a végtelen felett"] # 0x29dd (en: 'tie over infinity', DeepL translation) - - "⧞": [t: "függőleges vonallal negált végtelen"] # 0x29de (en: 'infinity negated with vertical bar', DeepL translation) - - "⧟": [t: "dupla végű multitérkép"] # 0x29df (en: 'double-ended multimap', DeepL translation) - - "⧠": [t: "négyzet kontúros körvonallal"] # 0x29e0 (en: 'square with contoured outline', DeepL translation) - - "⧡": [t: "növekszik, mint"] # 0x29e1 (en: 'increases as', DeepL translation) - - "⧢": [t: "shuffle termék"] # 0x29e2 (en: 'shuffle product', DeepL translation) - - "⧣": [t: "egyenlőségjel és ferde párhuzamos"] # 0x29e3 (en: 'equals sign and slanted parallel', DeepL translation) - - "⧤": [t: "egyenlőségjel és ferde párhuzamos tilde fölött"] # 0x29e4 (en: 'equals sign and slanted parallel with tilde above', DeepL translation) - - "⧥": [t: "azonos és ferde párhuzamos"] # 0x29e5 (en: 'identical to and slanted parallel', DeepL translation) - - "⧦": [t: "gleich stark"] # 0x29e6 (DeepL translation) - - "⧧": [t: "termodinamikai"] # 0x29e7 (en: 'thermodynamic', DeepL translation) - - "⧨": [t: "lefelé mutató háromszög bal oldali felével fekete"] # 0x29e8 (en: 'down pointing triangle with left half black', DeepL translation) - - "⧩": [t: "lefelé mutató háromszög jobb oldali felével fekete"] # 0x29e9 (en: 'down pointing triangle with right half black', DeepL translation) - - "⧪": [t: "fekete rombusz lefelé mutató nyíllal"] # 0x29ea (en: 'black diamond with down arrow', DeepL translation) - - "⧫": [t: "fekete rozettás"] # 0x29eb (en: 'black lozenge', DeepL translation) - - "⧬": [t: "fehér kör lefelé mutató nyíllal"] # 0x29ec (en: 'white circle with down arrow', DeepL translation) - - "⧭": [t: "fekete kör lefelé mutató nyíllal"] # 0x29ed (en: 'black circle with down arrow', DeepL translation) - - "⧮": [t: "hibával határolt fehér négyzet"] # 0x29ee (en: 'error-barred white square', DeepL translation) - - "⧯": [t: "hibásan elhatárolt fekete négyzet"] # 0x29ef (en: 'error-barred black square', DeepL translation) - - "⧰": [t: "hibás sávos fehér rombusz"] # 0x29f0 (en: 'error-barred white diamond', DeepL translation) - - "⧱": [t: "hibás sávos fekete rombusz"] # 0x29f1 (en: 'error-barred black diamond', DeepL translation) - - "⧲": [t: "hibával határolt fehér kör"] # 0x29f2 (en: 'error-barred white circle', DeepL translation) - - "⧳": [t: "hibás sávos fekete kör"] # 0x29f3 (en: 'error-barred black circle', DeepL translation) - - "⧴": [t: "szabály-késleltetett"] # 0x29f4 (en: 'rule-delayed', DeepL translation) - - "⧵": [t: "fordított szolidus operátor"] # 0x29f5 (en: 'reverse solidus operator', DeepL translation) - - "⧶": [t: "szolidus fölött vonallal"] # 0x29f6 (en: 'solidus with overbar', DeepL translation) - - "⧷": [t: "fordított solidus vízszintes vonallal"] # 0x29f7 (en: 'reverse solidus with horizontal stroke', DeepL translation) - - "⧸": [t: "nagy solidus"] # 0x29f8 (en: 'big solidus', DeepL translation) - - "⧹": [t: "nagy fordított solidus"] # 0x29f9 (en: 'big reverse solidus', DeepL translation) - - "⧺": [t: "dupla plusz"] # 0x29fa (en: 'double plus', DeepL translation) - - "⧻": [t: "hármas plusz"] # 0x29fb (en: 'triple plus', DeepL translation) - - "⧼": [t: "balra mutató ívelt szögletes zárójel"] # 0x29fc (en: 'left pointing curved angle bracket', DeepL translation) - - "⧽": [t: "jobbra mutató ívelt szögletes zárójel"] # 0x29fd (en: 'right pointing curved angle bracket', DeepL translation) - - "⧾": [t: "apró"] # 0x29fe (en: 'tiny', DeepL translation) - - "⧿": [t: "miny"] # 0x29ff (DeepL translation) - - "⨀": [t: "bekarikázott pontoperátor"] # 0x2a00 (en: 'circled dot operator', DeepL translation) - - "⨁": [t: "bekarikázott plusz operátor"] # 0x2a01 (en: 'circled plus operator', DeepL translation) - - "⨂": [t: "bekarikázott szorzó"] # 0x2a02 (en: 'circled times operator', DeepL translation) - - "⨃": [t: "unió operátor ponttal"] # 0x2a03 (en: 'union operator with dot', DeepL translation) - - "⨄": [t: "union operátor plusszal"] # 0x2a04 (en: 'union operator with plus', DeepL translation) - - "⨅": [t: "négyzetes metszéspont operátor"] # 0x2a05 (en: 'square intersection operator', DeepL translation) - - "⨆": [t: "négyzet egyesítés operátor"] # 0x2a06 (en: 'square union operator', DeepL translation) - - "⨇": [t: "két logikai és operátor"] # 0x2a07 (en: 'two logical and operator', DeepL translation) - - "⨈": [t: "két logikai vagy operátor"] # 0x2a08 (en: 'two logical or operator', DeepL translation) - - "⨉": [t: "times operátor"] # 0x2a09 (en: 'times operator', DeepL translation) - - "⨊": [t: "modulo kettő összege"] # 0x2a0a (en: 'modulo two sum', DeepL translation) - - "⨋": [t: "összegzés integrállal"] # 0x2a0b (en: 'summation with integral', DeepL translation) - - "⨌": [t: "négyes integrál operátor"] # 0x2a0c (en: 'quadruple integral operator', DeepL translation) - - "⨍": [t: "véges rész integrál"] # 0x2a0d (en: 'finite part integral', DeepL translation) - - "⨎": [t: "integrál kettős vonallal"] # 0x2a0e (en: 'integral with double stroke', DeepL translation) - - "⨏": [t: "integrál átlag a slash-el"] # 0x2a0f (en: 'integral average with slash', DeepL translation) - - "⨐": [t: "keringési függvény"] # 0x2a10 (en: 'circulation function', DeepL translation) - - "⨑": [t: "az óramutató járásával ellentétes irányú integráció"] # 0x2a11 (en: 'anticlockwise integration', DeepL translation) - - "⨒": [t: "vonalintegráció téglalap alakú útvonallal az oszlop körül"] # 0x2a12 (en: 'line integration with rectangular path around pole', DeepL translation) - - "⨓": [t: "vonalintegráció félköríves pályával a pólus körül"] # 0x2a13 (en: 'line integration with semicircular path around pole', DeepL translation) - - "⨔": [t: "vonalintegráció a pólus nélkül"] # 0x2a14 (en: 'line integration not including the pole', DeepL translation) - - "⨕": [t: "integrál egy pontoperátor körül"] # 0x2a15 (en: 'integral around a point operator', DeepL translation) - - "⨖": [t: "kvaternion integrál operátor"] # 0x2a16 (en: 'quaternion integral operator', DeepL translation) - - "⨗": [t: "integrál bal nyilas horoggal"] # 0x2a17 (en: 'integral with left arrow with hook', DeepL translation) - - "⨘": [t: "integrál időjelekkel"] # 0x2a18 (en: 'integral with times sign', DeepL translation) - - "⨙": [t: "integrál metszéssel"] # 0x2a19 (en: 'integral with intersection', DeepL translation) - - "⨚": [t: "integrál egyesítéssel"] # 0x2a1a (en: 'integral with union', DeepL translation) - - "⨛": [t: "integrál túlsó vonallal"] # 0x2a1b (en: 'integral with overbar', DeepL translation) - - "⨜": [t: "integrál aláhúzással"] # 0x2a1c (en: 'integral with underbar', DeepL translation) - - "⨝": [t: "csatlakozás"] # 0x2a1d (en: 'join', DeepL translation) - - "⨞": [t: "nagy bal oldali háromszög operátor"] # 0x2a1e (en: 'large left triangle operator', DeepL translation) - - "⨟": [t: "z jelölés sémakompozíció"] # 0x2a1f (en: 'z notation schema composition', DeepL translation) - - "⨠": [t: "z jelölés séma csővezeték"] # 0x2a20 (en: 'z notation schema piping', DeepL translation) - - "⨡": [t: "z jelölés séma kivetítés"] # 0x2a21 (en: 'z notation schema projection', DeepL translation) - - "⨢": [t: "plusz jel körrel a felett"] # 0x2a22 (en: 'plus sign with circle above', DeepL translation) - - "⨣": [t: "plusz jel körkörös ékezettel felette"] # 0x2a23 (en: 'plus sign with circumflex accent above', DeepL translation) - - "⨤": [t: "pluszjel tilde fölött"] # 0x2a24 (en: 'plus sign with tilde above', DeepL translation) - - "⨥": [t: "pluszjel, alatta ponttal"] # 0x2a25 (en: 'plus sign with dot below', DeepL translation) - - "⨦": [t: "plusz jel, alatta tilde"] # 0x2a26 (en: 'plus sign with tilde below', DeepL translation) - - "⨧": [t: "pluszjel kettes indexszel"] # 0x2a27 (en: 'plus sign with subscript two', DeepL translation) - - "⨨": [t: "pluszjel fekete háromszöggel"] # 0x2a28 (en: 'plus sign with black triangle', DeepL translation) - - "⨩": [t: "mínuszjel vesszővel felette"] # 0x2a29 (en: 'minus sign with comma above', DeepL translation) - - "⨪": [t: "mínuszjel alatta ponttal"] # 0x2a2a (en: 'minus sign with dot below', DeepL translation) - - "⨫": [t: "mínusz jel csökkenő pontokkal"] # 0x2a2b (en: 'minus sign with falling dots', DeepL translation) - - "⨬": [t: "mínusz jel emelkedő pontokkal"] # 0x2a2c (en: 'minus sign with rising dots', DeepL translation) - - "⨭": [t: "plusz jel a bal oldali félkörben"] # 0x2a2d (en: 'plus sign in left half circle', DeepL translation) - - "⨮": [t: "pluszjel a jobb oldali félkörben"] # 0x2a2e (en: 'plus sign in right half circle', DeepL translation) - - "⨯": # 0x2a2f - - test: - if: "$Verbosity='Terse'" - then: [t: "kereszt"] # (en: 'cross', DeepL translation) - else: [t: "kereszt termék"] # (en: 'cross product', DeepL translation) - - "⨰": [t: "szorzójel pont fölött"] # 0x2a30 (en: 'multiplication sign with dot above', DeepL translation) - - "⨱": [t: "szorzójel alulvonallal"] # 0x2a31 (en: 'multiplication sign with underbar', DeepL translation) - - "⨲": [t: "félközvetett termék alul zárt"] # 0x2a32 (en: 'semidirect product with bottom closed', DeepL translation) - - "⨳": [t: "smash termék"] # 0x2a33 (en: 'smash product', DeepL translation) - - "⨴": [t: "szorzójel a bal oldali félkörben"] # 0x2a34 (en: 'multiplication sign in left half circle', DeepL translation) - - "⨵": [t: "szorzójel a jobb oldali félkörben"] # 0x2a35 (en: 'multiplication sign in right half circle', DeepL translation) - - "⨶": [t: "bekarikázott szorzójel körkörös ékezettel"] # 0x2a36 (en: 'circled multiplication sign with circumflex accent', DeepL translation) - - "⨷": [t: "szorzójel kettős körben"] # 0x2a37 (en: 'multiplication sign in double circle', DeepL translation) - - "⨸": [t: "bekarikázott osztásjel"] # 0x2a38 (en: 'circled division sign', DeepL translation) - - "⨹": [t: "plusz jel háromszögben"] # 0x2a39 (en: 'plus sign in triangle', DeepL translation) - - "⨺": [t: "mínusz jel háromszögben"] # 0x2a3a (en: 'minus sign in triangle', DeepL translation) - - "⨻": [t: "szorzójel háromszögben"] # 0x2a3b (en: 'multiplication sign in triangle', DeepL translation) - - "⨼": [t: "belső termék"] # 0x2a3c (en: 'interior product', DeepL translation) - - "⨽": [t: "jobb oldali belső termék"] # 0x2a3d (en: 'righthand interior product', DeepL translation) - - "⨾": [t: "z jelölés relációs kompozíció"] # 0x2a3e (en: 'z notation relational composition', DeepL translation) - - "⨿": [t: "összeolvadás vagy koprodukció"] # 0x2a3f (en: 'amalgamation or coproduct', DeepL translation) - - "⩀": [t: "metszéspont ponttal"] # 0x2a40 (en: 'intersection with dot', DeepL translation) - - "⩁": [t: "egyesülés mínusz jellel"] # 0x2a41 (en: 'union with minus sign', DeepL translation) - - "⩂": [t: "unió fölött vonallal"] # 0x2a42 (en: 'union with overbar', DeepL translation) - - "⩃": [t: "metszéspont felülbillentyűvel"] # 0x2a43 (en: 'intersection with overbar', DeepL translation) - - "⩄": [t: "metszéspontja logikai és"] # 0x2a44 (en: 'intersection with logical and', DeepL translation) - - "⩅": [t: "egyesülés logikai vagy"] # 0x2a45 (en: 'union with logical or', DeepL translation) - - "⩆": [t: "unió felett metszéspont"] # 0x2a46 (en: 'union above intersection', DeepL translation) - - "⩇": [t: "metszéspont felett egyesülés"] # 0x2a47 (en: 'intersection above union', DeepL translation) - - "⩈": [t: "egyesülés felett sáv felett metszéspont"] # 0x2a48 (en: 'union above bar above intersection', DeepL translation) - - "⩉": [t: "metszéspont felett sáv felett unió"] # 0x2a49 (en: 'intersection above bar above union', DeepL translation) - - "⩊": [t: "egyesülés mellett és egyesüléssel összekötve"] # 0x2a4a (en: 'union beside and joined with union', DeepL translation) - - "⩋": [t: "metszéspont mellett és csatlakozott metszéspont"] # 0x2a4b (en: 'intersection beside and joined with intersection', DeepL translation) - - "⩌": [t: "zárt unió szeriuszokkal"] # 0x2a4c (en: 'closed union with serifs', DeepL translation) - - "⩍": [t: "zárt metszéspont serifekkel"] # 0x2a4d (en: 'closed intersection with serifs', DeepL translation) - - "⩎": [t: "kettős négyzet metszéspont"] # 0x2a4e (en: 'double square intersection', DeepL translation) - - "⩏": [t: "kettős négyzet egyesülés"] # 0x2a4f (en: 'double square union', DeepL translation) - - "⩐": [t: "zárt unió szeriókkal és zúzott termékkel"] # 0x2a50 (en: 'closed union with serifs and smash product', DeepL translation) - - "⩑": [t: "logikus és pont felett"] # 0x2a51 (en: 'logical and with dot above', DeepL translation) - - "⩒": [t: "logikus vagy ponttal felette"] # 0x2a52 (en: 'logical or with dot above', DeepL translation) - - "⩓": [t: "kettős logikai és"] # 0x2a53 (en: 'double logical and', DeepL translation) - - "⩔": [t: "dupla logikai vagy"] # 0x2a54 (en: 'double logical or', DeepL translation) - - "⩕": [t: "két egymást metsző logikai és"] # 0x2a55 (en: 'two intersecting logical and', DeepL translation) - - "⩖": [t: "két egymást metsző logikai vagy"] # 0x2a56 (en: 'two intersecting logical or', DeepL translation) - - "⩗": [t: "ferde nagy vagy"] # 0x2a57 (en: 'sloping large or', DeepL translation) - - "⩘": [t: "ferde nagy és"] # 0x2a58 (en: 'sloping large and', DeepL translation) - - "⩙": [t: "logikai vagy átfedő logikai és"] # 0x2a59 (en: 'logical or overlapping logical and', DeepL translation) - - "⩚": [t: "logikai és középső szárral"] # 0x2a5a (en: 'logical and with middle stem', DeepL translation) - - "⩛": [t: "logikai vagy középső szárral"] # 0x2a5b (en: 'logical or with middle stem', DeepL translation) - - "⩜": [t: "logikai és vízszintes kötőjellel"] # 0x2a5c (en: 'logical and with horizontal dash', DeepL translation) - - "⩝": [t: "logikai vagy vízszintes kötőjellel"] # 0x2a5d (en: 'logical or with horizontal dash', DeepL translation) - - "⩞": [t: "logikai és dupla felülvonallal"] # 0x2a5e (en: 'logical and with double overbar', DeepL translation) - - "⩟": [t: "logikus és alulütővel"] # 0x2a5f (en: 'logical and with underbar', DeepL translation) - - "⩠": [t: "logikai és dupla aláhúzással"] # 0x2a60 (en: 'logical and with double underbar', DeepL translation) - - "⩡": [t: "kis véna alulvonallal"] # 0x2a61 (en: 'small vee with underbar', DeepL translation) - - "⩢": [t: "logikai vagy dupla feletti vonallal"] # 0x2a62 (en: 'logical or with double overbar', DeepL translation) - - "⩣": [t: "logikai vagy dupla aláhúzott sávval"] # 0x2a63 (en: 'logical or with double underbar', DeepL translation) - - "⩤": [t: "z jelölés tartomány antirestrikció"] # 0x2a64 (en: 'z notation domain antirestriction', DeepL translation) - - "⩥": [t: "z jelölés tartomány antirestrikció"] # 0x2a65 (en: 'z notation range antirestriction', DeepL translation) - - "⩦": [t: "egyenlőségjel ponttal alul"] # 0x2a66 (en: 'equals sign with dot below', DeepL translation) - - "⩧": [t: "azonos a fenti ponttal"] # 0x2a67 (en: 'identical with dot above', DeepL translation) - - "⩨": [t: "háromszoros vízszintes sáv dupla függőleges vonallal"] # 0x2a68 (en: 'triple horizontal bar with double vertical stroke', DeepL translation) - - "⩩": [t: "háromszoros vízszintes sáv háromszoros függőleges vonallal"] # 0x2a69 (en: 'triple horizontal bar with triple vertical stroke', DeepL translation) - - "⩪": [t: "tilde operátor ponttal felül"] # 0x2a6a (en: 'tilde operator with dot above', DeepL translation) - - "⩫": [t: "tilde operátor emelkedő pontokkal"] # 0x2a6b (en: 'tilde operator with rising dots', DeepL translation) - - "⩬": [t: "hasonló mínusz hasonló"] # 0x2a6c (en: 'similar minus similar', DeepL translation) - - "⩭": [t: "egybeesik a fenti ponttal"] # 0x2a6d (en: 'congruent with dot above', DeepL translation) - - "⩮": [t: "egyenlő csillaggal"] # 0x2a6e (en: 'equals with asterisk', DeepL translation) - - "⩯": [t: "majdnem egyenlő a körkörös ékezettel"] # 0x2a6f (en: 'almost equal to with circumflex accent', DeepL translation) - - "⩰": [t: "megközelítőleg egyenlő vagy egyenlő"] # 0x2a70 (en: 'approximately equal to or equal to', DeepL translation) - - "⩱": [t: "egyenlőségjel felett plusz jel"] # 0x2a71 (en: 'equals sign above plus sign', DeepL translation) - - "⩲": [t: "plusz jel felett egyenlő jel"] # 0x2a72 (en: 'plus sign above equals sign', DeepL translation) - - "⩳": [t: "egyenlőségjel a tilde operátor felett"] # 0x2a73 (en: 'equals sign above tilde operator', DeepL translation) - - "⩴": [t: "kettős kettőspont egyenlő"] # 0x2a74 (en: 'double colon equal', DeepL translation) - - "⩵": [t: "két egymást követő egyenlőségjel"] # 0x2a75 (en: 'two consecutive equals signs', DeepL translation) - - "⩶": [t: "három egymást követő egyenlőségjel"] # 0x2a76 (en: 'three consecutive equals signs', DeepL translation) - - "⩷": [t: "egyenlőségjel két ponttal felül és két ponttal alul"] # 0x2a77 (en: 'equals sign with two dots above and two dots below', DeepL translation) - - "⩸": [t: "egyenértékű négy pont fölött"] # 0x2a78 (en: 'equivalent with four dots above', DeepL translation) - - "⩹": [t: "kisebb, mint belül körrel"] # 0x2a79 (en: 'less than with circle inside', DeepL translation) - - "⩺": [t: "nagyobb, mint körrel belül"] # 0x2a7a (en: 'greater than with circle inside', DeepL translation) - - "⩻": [t: "kevesebb mint, felette kérdőjellel"] # 0x2a7b (en: 'less than with question mark above', DeepL translation) - - "⩼": [t: "nagyobb, mint a fenti kérdőjellel"] # 0x2a7c (en: 'greater than with question mark above', DeepL translation) - - "⩽": [t: "kevesebb, mint vagy ferdén egyenlő"] # 0x2a7d (en: 'less than or slanted equal to', DeepL translation) - - "⩾": [t: "nagyobb, mint egyenlő vagy ferde egyenlő"] # 0x2a7e (en: 'greater than or slanted equal to', DeepL translation) - - "⩿": [t: "kevesebb, mint vagy ferde egyenlő, benne ponttal"] # 0x2a7f (en: 'less than or slanted equal to with dot inside', DeepL translation) - - "⪀": [t: "nagyobb, mint vagy ferde egyenlő, benne ponttal"] # 0x2a80 (en: 'greater than or slanted equal to with dot inside', DeepL translation) - - "⪁": [t: "kisebb, mint vagy ferde egyenlő, pont fölött"] # 0x2a81 (en: 'less than or slanted equal to with dot above', DeepL translation) - - "⪂": [t: "nagyobb, mint vagy ferdén egyenlő, pont fölött"] # 0x2a82 (en: 'greater than or slanted equal to with dot above', DeepL translation) - - "⪃": [t: "kevesebb, mint vagy ferdén egyenlő, pont felett jobbra"] # 0x2a83 (en: 'less than or slanted equal to with dot above right', DeepL translation) - - "⪄": [t: "nagyobb, mint vagy ferde egyenlő, balra fent ponttal"] # 0x2a84 (en: 'greater than or slanted equal to with dot above left', DeepL translation) - - "⪅": [t: "kevesebb, mint vagy megközelítőleg"] # 0x2a85 (en: 'less than or approximate', DeepL translation) - - "⪆": [t: "nagyobb, mint vagy megközelítő"] # 0x2a86 (en: 'greater than or approximate', DeepL translation) - - "⪇": [t: "kisebb, mint és egysoros nem egyenlő"] # 0x2a87 (en: 'less than and single line not equal to', DeepL translation) - - "⪈": [t: "nagyobb, mint és egysoros nem egyenlő"] # 0x2a88 (en: 'greater than and single line not equal to', DeepL translation) - - "⪉": [t: "kevesebb, mint és nem közelítő"] # 0x2a89 (en: 'less than and not approximate', DeepL translation) - - "⪊": [t: "nagyobb, mint és nem közelítő"] # 0x2a8a (en: 'greater than and not approximate', DeepL translation) - - "⪋": [t: "kisebb, mint fenti dupla vonal egyenlő fenti nagyobb, mint"] # 0x2a8b (en: 'less than above double line equal above greater than', DeepL translation) - - "⪌": [t: "nagyobb, mint fenti dupla vonal egyenlő fenti kisebb, mint"] # 0x2a8c (en: 'greater than above double line equal above less than', DeepL translation) - - "⪍": [t: "kevesebb, mint fenti hasonló vagy egyenlő"] # 0x2a8d (en: 'less than above similar or equal', DeepL translation) - - "⪎": [t: "nagyobb, mint a fenti hasonló vagy egyenlő"] # 0x2a8e (en: 'greater than above similar or equal', DeepL translation) - - "⪏": [t: "kisebb, mint fenti hasonló fenti nagyobb, mint"] # 0x2a8f (en: 'less than above similar above greater than', DeepL translation) - - "⪐": [t: "nagyobb, mint fenti hasonló fenti kisebb, mint"] # 0x2a90 (en: 'greater than above similar above less than', DeepL translation) - - "⪑": [t: "kisebb, mint fenti nagyobb, mint fenti dupla vonal egyenlő"] # 0x2a91 (en: 'less than above greater than above double line equal', DeepL translation) - - "⪒": [t: "nagyobb, mint a fenti kisebb, mint a fenti kettős vonal egyenlő"] # 0x2a92 (en: 'greater than above less than above double line equal', DeepL translation) - - "⪓": [t: "kisebb, mint fenti ferde egyenlő fenti nagyobb, mint fenti ferde egyenlő"] # 0x2a93 (en: 'less than above slanted equal above greater than above slanted equal', DeepL translation) - - "⪔": [t: "nagyobb, mint fenti ferde egyenlő fenti kisebb, mint fenti ferde egyenlő"] # 0x2a94 (en: 'greater than above slanted equal above less than above slanted equal', DeepL translation) - - "⪕": [t: "ferde egyenlő vagy kisebb, mint"] # 0x2a95 (en: 'slanted equal to or less than', DeepL translation) - - "⪖": [t: "ferde egyenlő vagy nagyobb, mint"] # 0x2a96 (en: 'slanted equal to or greater than', DeepL translation) - - "⪗": [t: "ferde egyenlő vagy kisebb, mint a pont belsejével"] # 0x2a97 (en: 'slanted equal to or less than with dot inside', DeepL translation) - - "⪘": [t: "ferde egyenlő vagy nagyobb, mint pont belsejével"] # 0x2a98 (en: 'slanted equal to or greater than with dot inside', DeepL translation) - - "⪙": [t: "dupla vonal egyenlő vagy kisebb, mint"] # 0x2a99 (en: 'double line equal to or less than', DeepL translation) - - "⪚": [t: "dupla vonal egyenlő vagy nagyobb, mint"] # 0x2a9a (en: 'double line equal to or greater than', DeepL translation) - - "⪛": [t: "dupla vonal ferde egyenlő vagy kisebb"] # 0x2a9b (en: 'double line slanted equal to or less than', DeepL translation) - - "⪜": [t: "dupla vonal ferdén egyenlő vagy nagyobb, mint"] # 0x2a9c (en: 'double line slanted equal to or greater than', DeepL translation) - - "⪝": [t: "hasonló vagy kisebb, mint"] # 0x2a9d (en: 'similar or less than', DeepL translation) - - "⪞": [t: "hasonló vagy nagyobb, mint"] # 0x2a9e (en: 'similar or greater than', DeepL translation) - - "⪟": [t: "hasonló fenti kisebb mint fenti egyenlő jel"] # 0x2a9f (en: 'similar above less than above equals sign', DeepL translation) - - "⪠": [t: "hasonló fenti nagyobb mint fenti egyenlő jel"] # 0x2aa0 (en: 'similar above greater than above equals sign', DeepL translation) - - "⪡": [t: "kettős beágyazott kevesebb, mint"] # 0x2aa1 (en: 'double nested less than', DeepL translation) - - "⪢": [t: "dupla beágyazott nagyobb, mint"] # 0x2aa2 (en: 'double nested greater than', DeepL translation) - - "⪣": [t: "dupla beágyazott kevesebb, mint alulvonallal"] # 0x2aa3 (en: 'double nested less than with underbar', DeepL translation) - - "⪤": [t: "nagyobb, mint átfedő kisebb, mint"] # 0x2aa4 (en: 'greater than overlapping less than', DeepL translation) - - "⪥": [t: "nagyobb, mint a kisebb, mint mellett"] # 0x2aa5 (en: 'greater than beside less than', DeepL translation) - - "⪦": [t: "kisebb, mint görbével zárt"] # 0x2aa6 (en: 'less than closed by curve', DeepL translation) - - "⪧": [t: "nagyobb, mint görbével lezárt"] # 0x2aa7 (en: 'greater than closed by curve', DeepL translation) - - "⪨": [t: "kisebb, mint a ferde egyenlő fölötti ívvel zárt"] # 0x2aa8 (en: 'less than closed by curve above slanted equal', DeepL translation) - - "⪩": [t: "nagyobb, mint a ferde egyenlő feletti görbével lezárt nagyobb"] # 0x2aa9 (en: 'greater than closed by curve above slanted equal', DeepL translation) - - "⪪": [t: "kisebb, mint"] # 0x2aaa (en: 'smaller than', DeepL translation) - - "⪫": [t: "nagyobb, mint"] # 0x2aab (en: 'larger than', DeepL translation) - - "⪬": [t: "kisebb vagy egyenlő"] # 0x2aac (en: 'smaller than or equal to', DeepL translation) - - "⪭": [t: "nagyobb, mint vagy egyenlő"] # 0x2aad (en: 'larger than or equal to', DeepL translation) - - "⪮": [t: "egyenlőségjel dudorral felül"] # 0x2aae (en: 'equals sign with bumpy above', DeepL translation) - - "⪯": [t: "előzi meg az egysoros egyenlőségjelet"] # 0x2aaf (en: 'precedes above single line equals sign', DeepL translation) - - "⪰": [t: "sikerül egyetlen vonal felett egyenlő jel"] # 0x2ab0 (en: 'succeeds above single line equals sign', DeepL translation) - - "⪱": [t: "előzi meg a fölött egysoros nem egyenlő"] # 0x2ab1 (en: 'precedes above single line not equal to', DeepL translation) - - "⪲": [t: "sikerül felett egyetlen vonal nem egyenlő"] # 0x2ab2 (en: 'succeeds above single line not equal to', DeepL translation) - - "⪳": [t: "előzi meg a fenti egyenlőségjelet"] # 0x2ab3 (en: 'precedes above equals sign', DeepL translation) - - "⪴": [t: "sikerül az egyenlőségjel felett"] # 0x2ab4 (en: 'succeeds above equals sign', DeepL translation) - - "⪵": [t: "megelőzi a fenti nem egyenlő"] # 0x2ab5 (en: 'precedes above not equal to', DeepL translation) - - "⪶": [t: "sikerül felett nem egyenlő"] # 0x2ab6 (en: 'succeeds above not equal to', DeepL translation) - - "⪷": [t: "megelőzi a fenti majdnem egyenlő"] # 0x2ab7 (en: 'precedes above almost equal to', DeepL translation) - - "⪸": [t: "sikerül felett majdnem egyenlő"] # 0x2ab8 (en: 'succeeds above almost equal to', DeepL translation) - - "⪹": [t: "megelőzi a fenti nem majdnem egyenlő"] # 0x2ab9 (en: 'precedes above not almost equal to', DeepL translation) - - "⪺": [t: "sikerül fenti nem majdnem egyenlő"] # 0x2aba (en: 'succeeds above not almost equal to', DeepL translation) - - "⪻": [t: "dupla megelőzi"] # 0x2abb (en: 'double precedes', DeepL translation) - - "⪼": [t: "kettős sikerül"] # 0x2abc (en: 'double succeeds', DeepL translation) - - "⪽": [t: "subset ponttal"] # 0x2abd (en: 'subset with dot', DeepL translation) - - "⪾": [t: "szuperhalmaza ponttal"] # 0x2abe (en: 'superset with dot', DeepL translation) - - "⪿": [t: "részhalmaz plusz jellel alatta"] # 0x2abf (en: 'subset with plus sign below', DeepL translation) - - "⫀": [t: "szuperhalmaz plusz jellel alatta"] # 0x2ac0 (en: 'superset with plus sign below', DeepL translation) - - "⫁": [t: "részhalmaz szorzójellel alul"] # 0x2ac1 (en: 'subset with multiplication sign below', DeepL translation) - - "⫂": [t: "szupersorozat szorzójellel alatta"] # 0x2ac2 (en: 'superset with multiplication sign below', DeepL translation) - - "⫃": [t: "részhalmaza vagy egyenlő a fenti ponttal"] # 0x2ac3 (en: 'subset of or equal to with dot above', DeepL translation) - - "⫄": [t: "szuperhalmaza vagy egyenlő a fenti ponttal"] # 0x2ac4 (en: 'superset of or equal to with dot above', DeepL translation) - - "⫅": [t: "részhalmaza a fenti egyenlőségjelnek"] # 0x2ac5 (en: 'subset of above equals sign', DeepL translation) - - "⫆": [t: "superset of above equals jel"] # 0x2ac6 (en: 'superset of above equals sign', DeepL translation) - - "⫇": [t: "részhalmaza fenti tilde operátor"] # 0x2ac7 (en: 'subset of above tilde operator', DeepL translation) - - "⫈": [t: "a fenti tilde-operátor felsőbbrendűsége"] # 0x2ac8 (en: 'superset of above tilde operator', DeepL translation) - - "⫉": [t: "részhalmaza fenti majdnem egyenlő"] # 0x2ac9 (en: 'subset of above almost equal to', DeepL translation) - - "⫊": [t: "szuperhalmaza fenti majdnem egyenlő"] # 0x2aca (en: 'superset of above almost equal to', DeepL translation) - - "⫋": [t: "részhalmaz felett nem egyenlő"] # 0x2acb (en: 'subset above not equal to', DeepL translation) - - "⫌": [t: "a fentiek szuperhalmaza nem egyenlő"] # 0x2acc (en: 'superset of above not equal to', DeepL translation) - - "⫍": [t: "négyzet balra nyitott doboz operátor"] # 0x2acd (en: 'square left open box operator', DeepL translation) - - "⫎": [t: "négyzet jobbra nyitott doboz operátor"] # 0x2ace (en: 'square right open box operator', DeepL translation) - - "⫏": [t: "zárt részhalmaz"] # 0x2acf (en: 'closed subset', DeepL translation) - - "⫐": [t: "zárt szuperszett"] # 0x2ad0 (en: 'closed superset', DeepL translation) - - "⫑": [t: "zárt részhalmaz vagy egyenlő"] # 0x2ad1 (en: 'closed subset or equal to', DeepL translation) - - "⫒": [t: "zárt szuperszett vagy egyenlő"] # 0x2ad2 (en: 'closed superset or equal to', DeepL translation) - - "⫓": [t: "részhalmaz felett szuperhalmaz"] # 0x2ad3 (en: 'subset above superset', DeepL translation) - - "⫔": [t: "superset above subset"] # 0x2ad4 (DeepL translation) - - "⫕": [t: "részhalmaz felett részhalmaz"] # 0x2ad5 (en: 'subset above subset', DeepL translation) - - "⫖": [t: "superset above superset"] # 0x2ad6 (DeepL translation) - - "⫗": [t: "szuperhalmaz mellett részhalmaz"] # 0x2ad7 (en: 'superset beside subset', DeepL translation) - - "⫘": [t: "szuperszett melletti és kötőjellel összekötött albetűvel"] # 0x2ad8 (en: 'superset beside and joined by dash with subset', DeepL translation) - - "⫙": [t: "nyitó elem lefelé"] # 0x2ad9 (en: 'element of opening down', DeepL translation) - - "⫚": [t: "szurokvilla téglalap tetejével"] # 0x2ada (en: 'pitchfork with tee top', DeepL translation) - - "⫛": [t: "keresztirányú metszéspont"] # 0x2adb (en: 'transversal intersection', DeepL translation) - - "⫝̸": [t: "elágazás"] # 0x2adc (en: 'forking', DeepL translation) - - "⫝": [t: "nem villás"] # 0x2add (en: 'nonforking', DeepL translation) - - "⫞": [t: "rövid bal oldali tüske"] # 0x2ade (en: 'short left tack', DeepL translation) - - "⫟": [t: "rövid lefelé irányuló kötés"] # 0x2adf (en: 'short down tack', DeepL translation) - - "⫠": [t: "rövid felfelé irányuló szegély"] # 0x2ae0 (en: 'short up tack', DeepL translation) - - "⫡": [t: "merőleges s-szel"] # 0x2ae1 (en: 'perpendicular with s', DeepL translation) - - "⫢": [t: "függőleges sávos hármas jobb oldali fordulókapu"] # 0x2ae2 (en: 'vertical bar triple right turnstile', DeepL translation) - - "⫣": [t: "dupla függőleges sáv balra fordul"] # 0x2ae3 (en: 'double vertical bar left turnstile', DeepL translation) - - "⫤": [t: "függőleges sávos dupla bal forduló"] # 0x2ae4 (en: 'vertical bar double left turnstile', DeepL translation) - - "⫥": [t: "dupla függőleges sáv dupla balra forduló"] # 0x2ae5 (en: 'double vertical bar double left turnstile', DeepL translation) - - "⫦": [t: "hosszú kötőjel a kettős függőleges bal tagjától"] # 0x2ae6 (en: 'long dash from left member of double vertical', DeepL translation) - - "⫧": [t: "rövid lefelé irányuló szegecs átkötéssel"] # 0x2ae7 (en: 'short down tack with overbar', DeepL translation) - - "⫨": [t: "rövid, felfelé irányuló írásjel alsó sávval"] # 0x2ae8 (en: 'short up tack with underbar', DeepL translation) - - "⫩": [t: "rövid felfelé szegecs felett rövid lefelé szegecs"] # 0x2ae9 (en: 'short up tack above short down tack', DeepL translation) - - "⫪": [t: "kettős lefelé fordulás"] # 0x2aea (en: 'double down tack', DeepL translation) - - "⫫": [t: "dupla felfelé fordított tack"] # 0x2aeb (en: 'double up tack', DeepL translation) - - "⫬": [t: "kettős vonás nem jel"] # 0x2aec (en: 'double stroke not sign', DeepL translation) - - "⫭": [t: "fordított kettős vonás nem jel"] # 0x2aed (en: 'reversed double stroke not sign', DeepL translation) - - "⫮": [t: "nem oszt fordított tagadóvesszővel"] # 0x2aee (en: 'does not divide with reversed negation slash', DeepL translation) - - "⫯": [t: "függőleges vonal, felette körrel"] # 0x2aef (en: 'vertical line with circle above', DeepL translation) - - "⫰": [t: "függőleges vonal körrel alul"] # 0x2af0 (en: 'vertical line with circle below', DeepL translation) - - "⫱": [t: "lefelé szegeződés körrel alatta"] # 0x2af1 (en: 'down tack with circle below', DeepL translation) - - "⫲": [t: "párhuzamos vízszintes vonallal"] # 0x2af2 (en: 'parallel with horizontal stroke', DeepL translation) - - "⫳": [t: "párhuzamos tilde operátorral"] # 0x2af3 (en: 'parallel with tilde operator', DeepL translation) - - "⫴": [t: "hármas függőleges vonalkás bináris kapcsolat"] # 0x2af4 (en: 'triple vertical bar binary relation', DeepL translation) - - "⫵": [t: "háromszoros függőleges sáv vízszintes vonallal"] # 0x2af5 (en: 'triple vertical bar with horizontal stroke', DeepL translation) - - "⫶": [t: "hármas kettőspont operátor"] # 0x2af6 (en: 'triple colon operator', DeepL translation) - - "⫷": [t: "háromszoros beágyazott kevesebb mint"] # 0x2af7 (en: 'triple nested less than', DeepL translation) - - "⫸": [t: "háromszoros beágyazott nagyobb, mint"] # 0x2af8 (en: 'triple nested greater than', DeepL translation) - - "⫹": [t: "dupla ferde vonal kisebb vagy egyenlő"] # 0x2af9 (en: 'double line slanted less than or equal to', DeepL translation) - - "⫺": [t: "kettős vonal ferde nagyobb vagy egyenlő"] # 0x2afa (en: 'double line slanted greater than or equal to', DeepL translation) - - "⫻": [t: "hármas szolidus bináris kapcsolat"] # 0x2afb (en: 'triple solidus binary relation', DeepL translation) - - "⫼": [t: "nagy háromszoros függőleges sávos operátor"] # 0x2afc (en: 'large triple vertical bar operator', DeepL translation) - - "⫽": [t: "kettős solidus operátor"] # 0x2afd (en: 'double solidus operator', DeepL translation) - - "⫾": [t: "fehér függőleges sáv"] # 0x2afe (en: 'white vertical bar', DeepL translation) - - "⫿": [t: "fehér függőleges sáv"] # 0x2aff (en: 'white vertical bar', DeepL translation) - - "⬀": [t: "északkeleti fehér nyíl"] # 0x2b00 (en: 'north east white arrow', DeepL translation) - - "⬁": [t: "északnyugati fehér nyíl"] # 0x2b01 (en: 'north west white arrow', DeepL translation) - - "⬂": [t: "délkeleti fehér nyíl"] # 0x2b02 (en: 'south east white arrow', DeepL translation) - - "⬃": [t: "délnyugati fehér nyíl"] # 0x2b03 (en: 'south west white arrow', DeepL translation) - - "⬄": [t: "balra jobbra fehér nyíl"] # 0x2b04 (en: 'left right white arrow', DeepL translation) - - "⬅": [t: "bal fekete nyíl"] # 0x2b05 (en: 'left black arrow', DeepL translation) - - "⬆": [t: "felfelé mutató fekete nyíl"] # 0x2b06 (en: 'up black arrow', DeepL translation) - - "⬇": [t: "lefelé mutató fekete nyíl"] # 0x2b07 (en: 'down black arrow', DeepL translation) - - "⬈": [t: "északkeleti fekete nyíl"] # 0x2b08 (en: 'north east black arrow', DeepL translation) - - "⬉": [t: "északnyugati fekete nyíl"] # 0x2b09 (en: 'north west black arrow', DeepL translation) - - "⬊": [t: "délkelet fekete nyíl"] # 0x2b0a (en: 'south east black arrow', DeepL translation) - - "⬋": [t: "délnyugati fekete nyíl"] # 0x2b0b (en: 'south west black arrow', DeepL translation) - - "⬌": [t: "balra jobbra fekete nyíl"] # 0x2b0c (en: 'left right black arrow', DeepL translation) - - "⬍": [t: "fel-le fekete nyíl"] # 0x2b0d (en: 'up down black arrow', DeepL translation) - - "⬎": [t: "jobb nyíl hegyével lefelé"] # 0x2b0e (en: 'right arrow with tip down', DeepL translation) - - "⬏": [t: "jobb nyílhegy hegyével felfelé"] # 0x2b0f (en: 'right arrow with tip up', DeepL translation) - - "⬐": [t: "bal nyíl hegyével lefelé"] # 0x2b10 (en: 'left arrow with tip down', DeepL translation) - - "⬑": [t: "bal nyíl hegyével felfelé"] # 0x2b11 (en: 'left arrow with tip up', DeepL translation) - - "⬒": [t: "négyzet felső felével fekete"] # 0x2b12 (en: 'square with top half black', DeepL translation) - - "⬓": [t: "négyzet, alsó fele fekete"] # 0x2b13 (en: 'square with bottom half black', DeepL translation) - - "⬔": [t: "négyzet jobb felső átlós fél feketével"] # 0x2b14 (en: 'square with upper right diagonal half black', DeepL translation) - - "⬕": [t: "négyzet bal alsó átlós félfeketével"] # 0x2b15 (en: 'square with lower left diagonal half black', DeepL translation) - - "⬖": [t: "rombusz bal oldali félfeketével"] # 0x2b16 (en: 'diamond with left half black', DeepL translation) - - "⬗": [t: "gyémánt, jobb oldali fele fekete"] # 0x2b17 (en: 'diamond with right half black', DeepL translation) - - "⬘": [t: "rombusz felső felével fekete"] # 0x2b18 (en: 'diamond with top half black', DeepL translation) - - "⬙": [t: "gyémánt alsó fele fekete"] # 0x2b19 (en: 'diamond with bottom half black', DeepL translation) - - "⬚": [t: "doboz"] # 0x2b1a (en: 'box', DeepL translation) - - "⬛": [t: "fekete nagy négyzet"] # 0x2b1b (en: 'black large square', DeepL translation) - - "⬜": [t: "fehér nagy négyzet"] # 0x2b1c (en: 'white large square', DeepL translation) - - "⬝": [t: "fekete nagyon kicsi négyzet"] # 0x2b1d (en: 'black very small square', DeepL translation) - - "⬞": [t: "fehér nagyon kicsi négyzet"] # 0x2b1e (en: 'white very small square', DeepL translation) - - "⬟": [t: "fekete ötszög"] # 0x2b1f (en: 'black pentagon', DeepL translation) - - "⬠": [t: "fehér ötszög"] # 0x2b20 (en: 'white pentagon', DeepL translation) - - "⬡": [t: "fehér hatszög"] # 0x2b21 (en: 'white hexagon', DeepL translation) - - "⬢": [t: "fekete hatszög"] # 0x2b22 (en: 'black hexagon', DeepL translation) - - "⬣": [t: "vízszintes fekete hatszög"] # 0x2b23 (en: 'horizontal black hexagon', DeepL translation) - - "⬤": [t: "fekete nagy kör"] # 0x2b24 (en: 'black large circle', DeepL translation) - - "⬥": [t: "fekete közepes rombusz"] # 0x2b25 (en: 'black medium diamond', DeepL translation) - - "⬦": [t: "fehér középső rombusz"] # 0x2b26 (en: 'white medium diamond', DeepL translation) - - "⬧": [t: "fekete közepes rombusz"] # 0x2b27 (en: 'black medium lozenge', DeepL translation) - - "⬨": [t: "fehér közepes rombusz"] # 0x2b28 (en: 'white medium lozenge', DeepL translation) - - "⬩": [t: "fekete kis rombusz"] # 0x2b29 (en: 'black small diamond', DeepL translation) - - "⬪": [t: "fekete kis rombusz"] # 0x2b2a (en: 'black small lozenge', DeepL translation) - - "⬫": [t: "fehér kis rombusz"] # 0x2b2b (en: 'white small lozenge', DeepL translation) - - "⬬": [t: "fekete vízszintes ellipszis"] # 0x2b2c (en: 'black horizontal ellipse', DeepL translation) - - "⬭": [t: "fehér vízszintes ellipszis"] # 0x2b2d (en: 'white horizontal ellipse', DeepL translation) - - "⬮": [t: "fekete függőleges ellipszis"] # 0x2b2e (en: 'black vertical ellipse', DeepL translation) - - "⬯": [t: "fehér függőleges ellipszis"] # 0x2b2f (en: 'white vertical ellipse', DeepL translation) - - "⬰": [t: "bal nyíl kis körrel"] # 0x2b30 (en: 'left arrow with small circle', DeepL translation) - - "⬱": [t: "három balra mutató nyíl"] # 0x2b31 (en: 'three left arrows', DeepL translation) - - "⬲": [t: "bal nyíl bekarikázott plusszal"] # 0x2b32 (en: 'left arrow with circled plus', DeepL translation) - - "⬳": [t: "hosszú bal oldali szaggatott nyíl"] # 0x2b33 (en: 'long left squiggle arrow', DeepL translation) - - "⬴": [t: "bal kétfejű nyíl függőleges vonallal"] # 0x2b34 (en: 'left two headed arrow with vertical stroke', DeepL translation) - - "⬵": [t: "bal kétfejű nyíl dupla függőleges vonallal"] # 0x2b35 (en: 'left two headed arrow with double vertical stroke', DeepL translation) - - "⬶": [t: "bal kétfejű nyíl a sávból"] # 0x2b36 (en: 'left two headed arrow from bar', DeepL translation) - - "⬷": [t: "bal kétfejű hármas kötőjeles nyíl"] # 0x2b37 (en: 'left two headed triple dash arrow', DeepL translation) - - "⬸": [t: "bal nyíl szaggatott szárral"] # 0x2b38 (en: 'left arrow with dotted stem', DeepL translation) - - "⬹": [t: "bal nyíl farokkal függőleges vonallal"] # 0x2b39 (en: 'left arrow with tail with vertical stroke', DeepL translation) - - "⬺": [t: "balra nyilazó farok dupla függőleges vonallal"] # 0x2b3a (en: 'left arrow with tail with double vertical stroke', DeepL translation) - - "⬻": [t: "bal kétfejű nyíl farokkal"] # 0x2b3b (en: 'left two headed arrow with tail', DeepL translation) - - "⬼": [t: "bal kétfejű nyíl, függőleges vonallal ellátott farokkal"] # 0x2b3c (en: 'left two headed arrow with tail with vertical stroke', DeepL translation) - - "⬽": [t: "bal kétfejű nyílvessző farokkal dupla függőleges vonallal"] # 0x2b3d (en: 'left two headed arrow with tail with double vertical stroke', DeepL translation) - - "⬾": [t: "bal nyíl át az x-en"] # 0x2b3e (en: 'left arrow through x', DeepL translation) - - "⬿": [t: "hullámzó nyíl egyenesen balra mutat"] # 0x2b3f (en: 'wave arrow pointing directly left', DeepL translation) - - "⭀": [t: "egyenlőségjel a bal oldali nyíl fölött"] # 0x2b40 (en: 'equals sign above left arrow', DeepL translation) - - "⭁": [t: "fordított tilde operátor a bal nyíl felett"] # 0x2b41 (en: 'reverse tilde operator above left arrow', DeepL translation) - - "⭂": [t: "bal nyíl fölött fordítva majdnem egyenlő"] # 0x2b42 (en: 'left arrow above reverse almost equal to', DeepL translation) - - "⭃": [t: "jobbra mutató nyíl a nagyobb, mint"] # 0x2b43 (en: 'right arrow through greater than', DeepL translation) - - "⭄": [t: "jobbra mutató nyíl a szuperhalmazon keresztül"] # 0x2b44 (en: 'right arrow through superset', DeepL translation) - - "⭅": [t: "bal négyszögletes nyíl"] # 0x2b45 (en: 'left quadruple arrow', DeepL translation) - - "⭆": [t: "jobb oldali négyszeres nyíl"] # 0x2b46 (en: 'right quadruple arrow', DeepL translation) - - "⭇": [t: "fordított tilde operátor a jobb nyíl felett"] # 0x2b47 (en: 'reverse tilde operator above right arrow', DeepL translation) - - "⭈": [t: "jobb nyíl fölött fordítva majdnem egyenlő"] # 0x2b48 (en: 'right arrow above reverse almost equal to', DeepL translation) - - "⭉": [t: "tilde operátor bal nyíl fölött"] # 0x2b49 (en: 'tilde operator above left arrow', DeepL translation) - - "⭊": [t: "bal fenti nyílvesszővel majdnem egyenlő"] # 0x2b4a (en: 'left arrow above almost equal to', DeepL translation) - - "⭋": [t: "bal nyíl a fordított tilde operátor felett"] # 0x2b4b (en: 'left arrow above reverse tilde operator', DeepL translation) - - "⭌": [t: "jobbra mutató nyíl fölött fordított tilde operátor"] # 0x2b4c (en: 'right arrow above reverse tilde operator', DeepL translation) - - "⭐": [t: "fehér közepes csillag"] # 0x2b50 (en: 'white medium star', DeepL translation) - - "⭑": [t: "fekete kis csillag"] # 0x2b51 (en: 'black small star', DeepL translation) - - "⭒": [t: "fehér kis csillag"] # 0x2b52 (en: 'white small star', DeepL translation) - - "⭓": [t: "fekete jobbra mutató ötszög"] # 0x2b53 (en: 'black right pointing pentagon', DeepL translation) - - "⭔": [t: "fehér, jobbra mutató ötszög"] # 0x2b54 (en: 'white right pointing pentagon', DeepL translation) - - "⭕": [t: "nehéz nagy kör"] # 0x2b55 (en: 'heavy large circle', DeepL translation) - - "⭖": [t: "nehéz ovális belül ovális"] # 0x2b56 (en: 'heavy oval with oval inside', DeepL translation) - - "⭗": [t: "nehéz kör körrel belül körrel"] # 0x2b57 (en: 'heavy circle with circle inside', DeepL translation) - - "⭘": [t: "nehéz kör"] # 0x2b58 (en: 'heavy circle', DeepL translation) - - "⭙": [t: "nehéz, körbefutó saltire"] # 0x2b59 (en: 'heavy circled saltire', DeepL translation) - - "⸀": [t: "derékszögű helyettesítő jelölés"] # 0x2e00 (en: 'right angle substitution marker', DeepL translation) - - "⸁": [t: "jobbra szögletes pontozott helyettesítési jelölő"] # 0x2e01 (en: 'right angle dotted substitution marker', DeepL translation) - - "⸂": [t: "bal helyettesítő zárójel"] # 0x2e02 (en: 'left substitution bracket', DeepL translation) - - "⸃": [t: "jobb oldali helyettesítő zárójel"] # 0x2e03 (en: 'right substitution bracket', DeepL translation) - - "⸄": [t: "bal szaggatott helyettesítő zárójel"] # 0x2e04 (en: 'left dotted substitution bracket', DeepL translation) - - "⸅": [t: "jobb oldali szaggatott helyettesítő zárójel"] # 0x2e05 (en: 'right dotted substitution bracket', DeepL translation) - - "⸆": [t: "emelt interpolációs jelölő"] # 0x2e06 (en: 'raised interpolation marker', DeepL translation) - - "⸇": [t: "emelt pontozott interpolációs jel"] # 0x2e07 (en: 'raised dotted interpolation marker', DeepL translation) - - "⸈": [t: "pontozott áthelyezésjelző jelölő"] # 0x2e08 (en: 'dotted transposition marker marker', DeepL translation) - - "⸉": [t: "bal oldali áthelyező zárójel"] # 0x2e09 (en: 'left transposition bracket', DeepL translation) - - "⸊": [t: "jobb oldali transzpozíciós zárójel"] # 0x2e0a (en: 'right transposition bracket', DeepL translation) - - "⸋": [t: "emelt négyzet"] # 0x2e0b (en: 'raised square', DeepL translation) - - "⸌": [t: "bal emelt kihagyás zárójel"] # 0x2e0c (en: 'left raised omission bracket', DeepL translation) - - "⸍": [t: "jobb oldali emelt kihagyás zárójel"] # 0x2e0d (en: 'right raised omission bracket', DeepL translation) - - "⸎": [t: "editorial coronis"] # 0x2e0e (DeepL translation) - - "⸏": [t: "bekezdés"] # 0x2e0f (en: 'paragraphos', DeepL translation) - - "⸐": [t: "villás bekezdés"] # 0x2e10 (en: 'forked paragraphos', DeepL translation) - - "⸑": [t: "fordított elágazó bekezdés"] # 0x2e11 (en: 'reversed forked paragraphos', DeepL translation) - - "⸒": [t: "hypodiastole"] # 0x2e12 (DeepL translation) - - "⸓": [t: "pöttyös obelosz"] # 0x2e13 (en: 'dotted obelos', DeepL translation) - - "⸔": [t: "lefelé ancora"] # 0x2e14 (en: 'down ancora', DeepL translation) - - "⸕": [t: "felfelé ancora"] # 0x2e15 (en: 'up ancora', DeepL translation) - - "⸖": [t: "pontozott jobbra mutató szög"] # 0x2e16 (en: 'dotted right pointing angle', DeepL translation) - - "⸗": [t: "kettős ferde kötőjel"] # 0x2e17 (en: 'double oblique hyphen', DeepL translation) - - "⸘": [t: "fordított interrobang"] # 0x2e18 (en: 'inverted interrobang', DeepL translation) - - "⸙": [t: "pálmaág"] # 0x2e19 (en: 'palm branch', DeepL translation) - - "⸚": [t: "kötőjel diaderézissel"] # 0x2e1a (en: 'hyphen with diaeresis', DeepL translation) - - "⸛": [t: "tilda gyűrűvel fölött"] # 0x2e1b (en: 'tilde with ring above', DeepL translation) - - "⸜": [t: "bal alsó zárójeles zárójel"] # 0x2e1c (en: 'left low paraphrase bracket', DeepL translation) - - "⸝": [t: "jobb alsó parafrázis zárójel"] # 0x2e1d (en: 'right low paraphrase bracket', DeepL translation) - - "⸞": [t: "tilde pont felett"] # 0x2e1e (en: 'tilde with dot above', DeepL translation) - - "⸟": [t: "tilde pontokkal alatta"] # 0x2e1f (en: 'tilde with dot below', DeepL translation) - - "⸠": [t: "bal függőleges sáv tollal"] # 0x2e20 (en: 'left vertical bar with quill', DeepL translation) - - "⸡": [t: "jobb oldali függőleges sáv tollal"] # 0x2e21 (en: 'right vertical bar with quill', DeepL translation) - - "⸢": [t: "bal felső fél zárójel"] # 0x2e22 (en: 'top left half bracket', DeepL translation) - - "⸣": [t: "jobb felső fél zárójel"] # 0x2e23 (en: 'top right half bracket', DeepL translation) - - "⸤": [t: "bal alsó fél zárójel"] # 0x2e24 (en: 'bottom left half bracket', DeepL translation) - - "⸥": [t: "jobb alsó fél zárójel"] # 0x2e25 (en: 'bottom right half bracket', DeepL translation) - - "⸦": [t: "bal oldalsó u zárójel"] # 0x2e26 (en: 'left sideways u bracket', DeepL translation) - - "⸧": [t: "jobb oldalsó u zárójel"] # 0x2e27 (en: 'right sideways u bracket', DeepL translation) - - "⸨": [t: "bal kettős zárójel"] # 0x2e28 (en: 'left double parentheses', DeepL translation) - - "⸩": [t: "jobb oldali kettős zárójel"] # 0x2e29 (en: 'right double parentheses', DeepL translation) - - "⸪": [t: "két pont egy pont fölött írásjel"] # 0x2e2a (en: 'two dots over one dot punctuation', DeepL translation) - - "⸫": [t: "egy pont két pont felett írásjel"] # 0x2e2b (en: 'one dot over two dots punctuation', DeepL translation) - - "⸬": [t: "négyzet négy pont írásjel"] # 0x2e2c (en: 'squared four dot punctuation', DeepL translation) - - "⸭": [t: "öt pontos jel"] # 0x2e2d (en: 'five dot mark', DeepL translation) - - "⸮": [t: "fordított kérdőjel"] # 0x2e2e (en: 'reversed question mark', DeepL translation) - - "ⸯ": [t: "függőleges tilde"] # 0x2e2f (en: 'vertical tilde', DeepL translation) - - "⸰": [t: "gyűrűs pont"] # 0x2e30 (en: 'ring point', DeepL translation) - - "⸱": [t: "szó elválasztó középső pont"] # 0x2e31 (en: 'word separator middle dot', DeepL translation) - - "⸲": [t: "fordított vesszővel"] # 0x2e32 (en: 'turned comma', DeepL translation) - - "⸳": [t: "emelt pont"] # 0x2e33 (en: 'raised dot', DeepL translation) - - "⸴": [t: "emelt vessző"] # 0x2e34 (en: 'raised comma', DeepL translation) - - "⸵": [t: "fordított pontosvessző"] # 0x2e35 (en: 'turned semicolon', DeepL translation) - - "⸶": [t: "tőr bal oldali védővel"] # 0x2e36 (en: 'dagger with left guard', DeepL translation) - - "⸷": [t: "tőr jobb oldali védővel"] # 0x2e37 (en: 'dagger with right guard', DeepL translation) - - "⸸": [t: "elfordított tőr"] # 0x2e38 (en: 'turned dagger', DeepL translation) - - "⸹": [t: "felső félszelvény jel"] # 0x2e39 (en: 'top half section sign', DeepL translation) - - "⸺": [t: "két em dash"] # 0x2e3a (en: 'two em dash', DeepL translation) - - "⸻": [t: "három em kötőjel"] # 0x2e3b (en: 'three em dash', DeepL translation) - - "〃": [t: "dettó jel"] # 0x3003 (en: 'ditto mark', DeepL translation) - - "〈": [t: "bal szögletes zárójel"] # 0x3008 (en: 'left angle bracket', DeepL translation) - - "〉": [t: "derékszögű zárójel"] # 0x3009 (en: 'right angle bracket', DeepL translation) - - "《": [t: "bal dupla szögletes zárójel"] # 0x300a (en: 'left double angle bracket', DeepL translation) - - "》": [t: "jobb oldali kettős szögletes zárójel"] # 0x300b (en: 'right double angle bracket', DeepL translation) - - "「": [t: "bal sarok zárójel"] # 0x300c (en: 'left corner bracket', DeepL translation) - - "」": [t: "jobb oldali sarok zárójel"] # 0x300d (en: 'right corner bracket', DeepL translation) - - "『": [t: "bal oldali fehér sarokkapocs"] # 0x300e (en: 'left white corner bracket', DeepL translation) - - "』": [t: "jobb oldali fehér sarok zárójel"] # 0x300f (en: 'right white corner bracket', DeepL translation) - - "【": [t: "bal fekete lencse alakú zárójel"] # 0x3010 (en: 'left black lenticular bracket', DeepL translation) - - "】": [t: "jobb oldali fekete lencsés zárójel"] # 0x3011 (en: 'right black lenticular bracket', DeepL translation) - - "〔": [t: "bal teknőspáncélos zárójel"] # 0x3014 (en: 'left tortoise shell bracket', DeepL translation) - - "〕": [t: "jobb oldali teknőspáncél zárójel"] # 0x3015 (en: 'right tortoise shell bracket', DeepL translation) - - "〖": [t: "bal oldali fehér lencse alakú zárójel"] # 0x3016 (en: 'left white lenticular bracket', DeepL translation) - - "〗": [t: "jobb oldali fehér lencsés zárójel"] # 0x3017 (en: 'right white lenticular bracket', DeepL translation) - - "〘": [t: "bal oldali fehér teknőspáncél konzol"] # 0x3018 (en: 'left white tortoise shell bracket', DeepL translation) - - "〙": [t: "jobb oldali fehér teknőspáncélos zárójel"] # 0x3019 (en: 'right white tortoise shell bracket', DeepL translation) - - "〚": [t: "bal oldali fehér szögletes zárójel"] # 0x301a (en: 'left white square bracket', DeepL translation) - - "〛": [t: "jobb oldali fehér szögletes zárójel"] # 0x301b (en: 'right white square bracket', DeepL translation) - - "〜": [t: "hullámos kötőjel"] # 0x301c (en: 'wave dash', DeepL translation) - - "〰": [t: "hullámos kötőjel"] # 0x3030 (en: 'wavy dash', DeepL translation) - - "㉈": [t: "bekarikázott tízes szám fekete négyzetben"] # 0x3248 (en: 'circled number ten on black square', DeepL translation) - - "㉉": [t: "bekarikázott húszas szám fekete négyzetben"] # 0x3249 (en: 'circled number twenty on black square', DeepL translation) - - "㉊": [t: "bekarikázott harmincas szám fekete négyzetben"] # 0x324a (en: 'circled number thirty on black square', DeepL translation) - - "㉋": [t: "bekarikázott negyvenes szám fekete négyzetben"] # 0x324b (en: 'circled number forty on blacks square', DeepL translation) - - "㉌": [t: "fekete négyzetben bekarikázott ötvenes szám"] # 0x324c (en: 'circled number fifty on black square', DeepL translation) - - "㉍": [t: "fekete négyzetben bekarikázott hatvanas szám"] # 0x324d (en: 'circled number sixty on black square', DeepL translation) - - "㉎": [t: "körbeírt hetvenes szám fekete négyzetben"] # 0x324e (en: 'circled number seventy on black square', DeepL translation) - - "㉏": [t: "bekarikázott negyvenes szám fekete négyzetben"] # 0x324f (en: 'circled number eighty on black square', DeepL translation) - - "㉑": [t: "bekarikázott huszonegyes szám"] # 0x3251 (en: 'circled number twenty one', DeepL translation) - - "㉒": [t: "bekarikázott huszonkettes szám"] # 0x3252 (en: 'circled number twenty two', DeepL translation) - - "㉓": [t: "bekarikázott huszonhármas szám"] # 0x3253 (en: 'circled number twenty three', DeepL translation) - - "㉔": [t: "bekarikázott huszonnégyes szám"] # 0x3254 (en: 'circled number twenty four', DeepL translation) - - "㉕": [t: "bekarikázott huszonötös szám"] # 0x3255 (en: 'circled number twenty five', DeepL translation) - - "㉖": [t: "bekarikázott huszonhatos szám"] # 0x3256 (en: 'circled number twenty six', DeepL translation) - - "㉗": [t: "bekarikázott szám huszonhét"] # 0x3257 (en: 'circled number twenty seven', DeepL translation) - - "㉘": [t: "bekarikázott huszas szám"] # 0x3258 (en: 'circled number twenty eight', DeepL translation) - - "㉙": [t: "bekarikázott huszonkilenc szám"] # 0x3259 (en: 'circled number twenty nine', DeepL translation) - - "㉚": [t: "bekarikázott szám harminc"] # 0x325a (en: 'circled number thirty', DeepL translation) - - "㉛": [t: "bekarikázott harmincegyes szám"] # 0x325b (en: 'circled number thirty one', DeepL translation) - - "㉜": [t: "bekarikázott harminckettes szám"] # 0x325c (en: 'circled number thirty two', DeepL translation) - - "㉝": [t: "bekarikázott harminchárom"] # 0x325d (en: 'circled number thirty three', DeepL translation) - - "㉞": [t: "bekarikázott harmincnégyes"] # 0x325e (en: 'circled number thirty four', DeepL translation) - - "㉟": [t: "bekarikázott harmincötös szám"] # 0x325f (en: 'circled number thirty five', DeepL translation) - - "㊱": [t: "bekarikázott szám harminchat"] # 0x32b1 (en: 'circled number thirty six', DeepL translation) - - "㊲": [t: "bekarikázott harminchetes szám"] # 0x32b2 (GPT-5.4 translation) (en: 'circled number thirty seven', DeepL translation) - - "㊳": [t: "bekarikázott harmincas számnál"] # 0x32b3 (GPT-5.4 translation) (en: 'circled number thirty eight', DeepL translation) - - "㊴": [t: "bekarikázott harminckilenc"] # 0x32b4 (GPT-5.4 translation) (en: 'circled number thirty nine', DeepL translation) - - "㊵": [t: "bekarikázott negyvenes szám"] # 0x32b5 (GPT-5.4 translation) (en: 'circled number forty', DeepL translation) - - "㊶": [t: "bekarikázott negyvenegyes szám"] # 0x32b6 (GPT-5.4 translation) (en: 'circled number forty one', DeepL translation) - - "㊷": [t: "bekarikázott negyvenkettes szám"] # 0x32b7 (GPT-5.4 translation) (en: 'circled number forty two', DeepL translation) - - "㊸": [t: "bekarikázott negyvenhármas szám"] # 0x32b8 (GPT-5.4 translation) (en: 'circled number forty three', DeepL translation) - - "㊹": [t: "bekarikázott negyvennégyes szám"] # 0x32b9 (GPT-5.4 translation) (en: 'circled number forty four', DeepL translation) - - "㊺": [t: "bekarikázott negyvenötös szám"] # 0x32ba (GPT-5.4 translation) (en: 'circled number forty five', DeepL translation) - - "㊻": [t: "bekarikázott negyvenhatos szám"] # 0x32bb (GPT-5.4 translation) (en: 'circled number forty six', DeepL translation) - - "㊼": [t: "bekarikázott szám negyvenhét"] # 0x32bc (GPT-5.4 translation) (en: 'circled number forty seven', DeepL translation) - - "㊽": [t: "bekarikázott negyvenes szám"] # 0x32bd (GPT-5.4 translation) (en: 'circled number forty eight', DeepL translation) - - "㊾": [t: "bekarikázott negyvenkilenc"] # 0x32be (GPT-5.4 translation) (en: 'circled number forty nine', DeepL translation) - - "㊿": [t: "bekarikázott szám ötven"] # 0x32bf (GPT-5.4 translation) (en: 'circled number fifty', DeepL translation) - - "㋌": [t: "higany"] # 0x32cc (en: 'mercury', DeepL translation) - - "㋍": [t: "ergs"] # 0x32cd (DeepL translation) - - "㋎": [t: "elektronvolt"] # 0x32ce (en: 'electron volts', DeepL translation) - - "㋏": [t: "korlátozott felelősség jele"] # 0x32cf (en: 'limited liability sign', DeepL translation) - - "㍱": [t: "hektopascal"] # 0x3371 (en: 'hectopascals', DeepL translation) - - "㍲": [t: "dalton"] # 0x3372 (en: 'daltons', DeepL translation) - - "㍳": [t: "csillagászati egységek"] # 0x3373 (en: 'astronomical units', DeepL translation) - - "㍴": [t: "sávok"] # 0x3374 (en: 'bars', DeepL translation) - - "㍵": [t: "o v"] # 0x3375 (DeepL translation) - - "㍶": [t: "parszek"] # 0x3376 (en: 'parsecs', DeepL translation) - - "㍷": [t: "deciméter"] # 0x3377 (en: 'decimeters', DeepL translation) - - "㍸": [t: "deciméter négyzet"] # 0x3378 (en: 'decimeters squared', DeepL translation) - - "㍹": [t: "deciméterek köbméterben"] # 0x3379 (en: 'decimeters cubed', DeepL translation) - - "㍺": [t: "instrumentális egységek"] # 0x337a (en: 'instrumental units', DeepL translation) - - "㎀": [t: "picoamp"] # 0x3380 (en: 'picoamps', DeepL translation) - - "㎁": [t: "nanoamp"] # 0x3381 (en: 'nanoamps', DeepL translation) - - "㎂": [t: "mikroamper"] # 0x3382 (en: 'microamps', DeepL translation) - - "㎃": [t: "milliamper"] # 0x3383 (en: 'milliamps', DeepL translation) - - "㎄": [t: "kiloamp"] # 0x3384 (en: 'kiloamps', DeepL translation) - - "㎅": [t: "kilobájt"] # 0x3385 (en: 'kilobytes', DeepL translation) - - "㎆": [t: "megabájt"] # 0x3386 (en: 'megabytes', DeepL translation) - - "㎇": [t: "gigabájt"] # 0x3387 (en: 'gigabytes', DeepL translation) - - "㎈": [t: "kalória"] # 0x3388 (en: 'calories', DeepL translation) - - "㎉": [t: "kilokalória"] # 0x3389 (en: 'kilocalories', DeepL translation) - - "㎊": [t: "pikofarádok"] # 0x338a (en: 'picofarads', DeepL translation) - - "㎋": [t: "nanofarad"] # 0x338b (en: 'nanofarads', DeepL translation) - - "㎌": [t: "mikrofarád"] # 0x338c (en: 'microfarads', DeepL translation) - - "㎍": [t: "mikrogramm"] # 0x338d (en: 'micrograms', DeepL translation) - - "㎎": [t: "milligramm"] # 0x338e (en: 'milligrams', DeepL translation) - - "㎏": [t: "kilogramm"] # 0x338f (en: 'kilograms', DeepL translation) - - "㎐": [t: "hertz"] # 0x3390 (DeepL translation) - - "㎑": [t: "kilohertz"] # 0x3391 (DeepL translation) - - "㎒": [t: "megahertz"] # 0x3392 (DeepL translation) - - "㎓": [t: "gigahertz"] # 0x3393 (DeepL translation) - - "㎔": [t: "terahertz"] # 0x3394 (DeepL translation) - - "㎕": [t: "mikroliter"] # 0x3395 (en: 'microliters', DeepL translation) - - "㎖": [t: "milliliter"] # 0x3396 (en: 'milliliters', DeepL translation) - - "㎗": [t: "deciliter"] # 0x3397 (en: 'deciliters', DeepL translation) - - "㎘": [t: "kiloliter"] # 0x3398 (en: 'kiloliters', DeepL translation) - - "㎙": [t: "femtométer"] # 0x3399 (en: 'femtometers', DeepL translation) - - "㎚": [t: "nanométer"] # 0x339a (en: 'nanometers', DeepL translation) - - "㎛": [t: "mikrométer"] # 0x339b (en: 'micrometers', DeepL translation) - - "㎜": [t: "milliméter"] # 0x339c (en: 'millimeters', DeepL translation) - - "㎝": [t: "centiméter"] # 0x339d (en: 'centimeters', DeepL translation) - - "㎞": [t: "kilométer"] # 0x339e (en: 'kilometers', DeepL translation) - - "㎟": [t: "milliméter négyzet"] # 0x339f (en: 'millimeters squared', DeepL translation) - - "㎠": [t: "centiméter négyzet"] # 0x33a0 (en: 'centimeters squared', DeepL translation) - - "㎡": [t: "méteres négyzet"] # 0x33a1 (en: 'meters squared', DeepL translation) - - "㎢": [t: "kilométer négyzet"] # 0x33a2 (en: 'kilometers squared', DeepL translation) - - "㎣": [t: "milliméter köbméter"] # 0x33a3 (en: 'millimeters cubed', DeepL translation) - - "㎤": [t: "centiméterek köbgyöke"] # 0x33a4 (en: 'centimeters cubed', DeepL translation) - - "㎥": [t: "méter köbméter"] # 0x33a5 (en: 'meters cubed', DeepL translation) - - "㎦": [t: "kilométerek köbösítve"] # 0x33a6 (en: 'kilometers cubed', DeepL translation) - - "㎧": [t: "méter per másodperc"] # 0x33a7 (en: 'meters per second', DeepL translation) - - "㎨": [t: "méter per másodperc négyzetméter"] # 0x33a8 (en: 'meters per second squared', DeepL translation) - - "㎩": [t: "pascals"] # 0x33a9 (DeepL translation) - - "㎪": [t: "kilopascal"] # 0x33aa (en: 'kilopascals', DeepL translation) - - "㎫": [t: "megapaszkál"] # 0x33ab (en: 'megapascals', DeepL translation) - - "㎬": [t: "gigapaszkál"] # 0x33ac (en: 'gigapascals', DeepL translation) - - "㎭": [t: "radián"] # 0x33ad (en: 'rads', DeepL translation) - - "㎮": [t: "rad másodpercenként"] # 0x33ae (en: 'rads per second', DeepL translation) - - "㎯": [t: "rad/másodperc négyzet"] # 0x33af (en: 'rads per second squared', DeepL translation) - - "㎰": [t: "pikoszekundum"] # 0x33b0 (en: 'picoseconds', DeepL translation) - - "㎱": [t: "nanoszekundum"] # 0x33b1 (en: 'nanoseconds', DeepL translation) - - "㎲": [t: "mikroszekundum"] # 0x33b2 (en: 'microseconds', DeepL translation) - - "㎳": [t: "milliszekundum"] # 0x33b3 (en: 'milliseconds', DeepL translation) - - "㎴": [t: "pikovolt"] # 0x33b4 (en: 'picovolts', DeepL translation) - - "㎵": [t: "nanovolt"] # 0x33b5 (en: 'nanovolts', DeepL translation) - - "㎶": [t: "mikrovolt"] # 0x33b6 (en: 'microvolts', DeepL translation) - - "㎷": [t: "millivolt"] # 0x33b7 (en: 'millivolts', DeepL translation) - - "㎸": [t: "kilovolt"] # 0x33b8 (en: 'kilovolts', DeepL translation) - - "㎹": [t: "megavolt"] # 0x33b9 (en: 'megavolts', DeepL translation) - - "㎺": [t: "pikowatt"] # 0x33ba (en: 'picowatts', DeepL translation) - - "㎻": [t: "nanowatt"] # 0x33bb (en: 'nanowatts', DeepL translation) - - "㎼": [t: "mikrowatt"] # 0x33bc (en: 'microwatts', DeepL translation) - - "㎽": [t: "milliwatt"] # 0x33bd (en: 'milliwatts', DeepL translation) - - "㎾": [t: "kilowatt"] # 0x33be (en: 'kilowatts', DeepL translation) - - "㎿": [t: "megawatt"] # 0x33bf (en: 'megawatts', DeepL translation) - - "㏀": [t: "kilo-ohm"] # 0x33c0 (en: 'kilo-ohms', DeepL translation) - - "㏁": [t: "megaohm"] # 0x33c1 (en: 'megaohms', DeepL translation) - - "㏂": [t: "attométerek"] # 0x33c2 (en: 'attometers', DeepL translation) - - "㏃": [t: "becquerel"] # 0x33c3 (en: 'becquerels', DeepL translation) - - "㏄": [t: "köbcentiméter"] # 0x33c4 (en: 'cubic centimeters', DeepL translation) - - "㏅": [t: "kandeláber"] # 0x33c5 (en: 'candelas', DeepL translation) - - "㏆": [t: "coulomb kilogrammonként"] # 0x33c6 (en: 'coulombs per kilogram', DeepL translation) - - "㏇": [t: "nagybetűs c, o, pont"] # 0x33c7 (I have no idea what this is) (en: 'cap C, o, period', DeepL translation) - - "㏈": [t: "decibel"] # 0x33c8 (en: 'decibels', DeepL translation) - - "㏉": [t: "szürke"] # 0x33c9 (en: 'grays', DeepL translation) - - "㏊": [t: "hektár"] # 0x33ca (en: 'hectares', DeepL translation) - - "㏋": [t: "lóerő"] # 0x33cb (en: 'horsepower', DeepL translation) - - "㏌": [t: "hüvelyk"] # 0x33cc (en: 'inches', DeepL translation) - - "㏍": [t: "kilokelvin"] # 0x33cd (en: 'kilokelvins', DeepL translation) - - "㏎": [t: "kilométer"] # 0x33ce (en: 'kilometers', DeepL translation) - - "㏏": [t: "csomók"] # 0x33cf (en: 'knots', DeepL translation) - - "㏐": [t: "lumen"] # 0x33d0 (en: 'lumens', DeepL translation) - - "㏑": [t: "természetes log"] # 0x33d1 (en: 'natural log', DeepL translation) - - "㏒": [t: "logaritmus"] # 0x33d2 (en: 'logarithm', DeepL translation) - - "㏓": [t: "lux"] # 0x33d3 (DeepL translation) - - "㏔": [t: "millibarn"] # 0x33d4 (en: 'millibarns', DeepL translation) - - "㏕": [t: "malmok"] # 0x33d5 (en: 'mills', DeepL translation) - - "㏖": [t: "mól"] # 0x33d6 (en: 'moles', DeepL translation) - - "㏗": [t: "p h"] # 0x33d7 (DeepL translation) - - "㏘": [t: "pikométer"] # 0x33d8 (en: 'picometers', DeepL translation) - - "㏙": [t: "milliomodrész"] # 0x33d9 (en: 'parts per million', DeepL translation) - - "㏚": [t: "petaroentgens"] # 0x33da (DeepL translation) - - "㏛": [t: "steradiánok"] # 0x33db (en: 'steradians', DeepL translation) - - "㏜": [t: "sziták"] # 0x33dc (en: 'sieverts', DeepL translation) - - "㏝": [t: "webers"] # 0x33dd (DeepL translation) - - "㏞": [t: "volt per méter"] # 0x33de (en: 'volts per meter', DeepL translation) - - "㏟": [t: "amper per méter"] # 0x33df (en: 'amps per meter', DeepL translation) - - "㏿": [t: "gallonok"] # 0x33ff (en: 'gallons', DeepL translation) - - "": [t: "egyenlő az alatta lévő kalappal"] # 0xe900 (en: 'equals with hat below', DeepL translation) - - "": [t: "egyenlő plusz felett"] # 0xe901 (en: 'equals with plus above', DeepL translation) - - "": [t: "egyenlő plusz alatt"] # 0xe902 (en: 'equals with plus below', DeepL translation) - - "": [t: "tilde plusszal fölötte"] # 0xe903 (en: 'tilde with plus above', DeepL translation) - - "": [t: "tilde plusszal alatta"] # 0xe904 (en: 'tilde with plus below', DeepL translation) - - "": [t: "egyenlő kétszeres felett nagyobb, mint"] # 0xe908 (en: 'equal double over greater than', DeepL translation) - - "": [t: "egyenlő kettős felett kevesebb mint"] # 0xe909 (en: 'equal double over less than', DeepL translation) - - "": [t: "tartalmazza vagy egyenlő"] # 0xe90a (en: 'contains or equal to', DeepL translation) - - "": [t: "szuperhalmaza vagy egyenlő"] # 0xe90b (en: 'superset of or equal to', DeepL translation) - - "": [t: "részhalmaza vagy egyenlő"] # 0xe90c (en: 'subset of or equal to', DeepL translation) - - "": [t: "egyenlő felett kisebb, mint"] # 0xe90d (en: 'equal over less than', DeepL translation) - - "": [t: "eleme vagy egyenlő"] # 0xe912 (en: 'element of or equal to', DeepL translation) - - "": [t: "egyenlő vagy nagyobb, mint"] # 0xe913 (en: 'equal to or greater than', DeepL translation) - - "": [t: "hozzávetőleges szuperhalmaza"] # 0xe914 (en: 'approximate superset of', DeepL translation) - - "": [t: "megközelítő részhalmaza"] # 0xe915 (en: 'approximate subset of', DeepL translation) - - "": [t: "superset of with dot includes as sub relation"] # 0xe916 (DeepL translation) - - "": [t: "részhalmaza ponttal szerepel mint sub reláció"] # 0xe917 (en: 'subset of with dot is included in as sub relation', DeepL translation) - - "": [t: "egyenlő az alatta lévő ponttal"] # 0xe918 (en: 'equal with dot below', DeepL translation) - - "": [t: "bal pont mínusz felett mínusz felett jobb pont"] # 0xe919 (en: 'left dot over minus over right dot', DeepL translation) - - "": [t: "jobb pont a mínusz felett a bal pont felett"] # 0xe91a (en: 'right dot over minus over left dot', DeepL translation) - - "": [t: "majdnem egyenlő a mínuszokkal"] # 0xe91f (en: 'almost equal to minus', DeepL translation) - - "": [t: "dupla négyzet csésze"] # 0xe920 (en: 'double square cup', DeepL translation) - - "": [t: "dupla négyzet nagybetű"] # 0xe921 (en: 'double square cap', DeepL translation) - - "": [t: "kisebb, mint egyenlő vagy nagyobb, mint"] # 0xe922 (en: 'less than equal to or greater than', DeepL translation) - - "": [t: "tilde ponttal"] # 0xe924 (en: 'tilde with dot', DeepL translation) - - "": [t: "tilde két ponttal"] # 0xe925 (en: 'tilde with two dots', DeepL translation) - - "": [t: "kisebb, mint nagyobb vagy egyenlő"] # 0xe926 (en: 'less than greater than or equal to', DeepL translation) - - "": [t: "nagyobb, mint kisebb vagy egyenlő"] # 0xe927 (en: 'greater than less than or equal to', DeepL translation) - - "": [t: "egyenértékű vagy kisebb, mint"] # 0xe928 (en: 'equivalent to or less than', DeepL translation) - - "": [t: "egyenértékű vagy nagyobb, mint"] # 0xe929 (en: 'equivalent to or greater than', DeepL translation) - - "": [t: "bal nyitott doboz kezelő"] # 0xe92a (en: 'left open box operator', DeepL translation) - - "": [t: "jobb oldali nyitott dobozos kezelő"] # 0xe92b (en: 'right open box operator', DeepL translation) - - "": [t: "azonos a ponttal"] # 0xe92c (en: 'identical to with dot', DeepL translation) - - "": [t: "nagyobb, mint egyenlő vagy kisebb, mint"] # 0xe92d (en: 'greater than equal to or less than', DeepL translation) - - "": [t: "bárkezelő"] # 0xe92e (en: 'bar operator', DeepL translation) - - "": [t: "kettős sávos operátor"] # 0xe92f (en: 'double bar operator', DeepL translation) - - "": [t: "háromszoros rúdkezelő"] # 0xe930 (en: 'triple bar operator', DeepL translation) - - "": [t: "kisebb, mint vagy megközelítőleg egyenlő"] # 0xe932 (en: 'less than or approximately equal to', DeepL translation) - - "": [t: "nagyobb vagy megközelítőleg egyenlő"] # 0xe933 (en: 'greater than or approximately equal to', DeepL translation) - - "": [t: "beágyazott kisebb, mint"] # 0xe936 (en: 'nested less than', DeepL translation) - - "": [t: "fészkes nagyobb, mint"] # 0xe937 (en: 'nested greater than', DeepL translation) - - "": [t: "megelőzi vagy azzal egyenértékű"] # 0xe93a (en: 'precedes or equivalent to', DeepL translation) - - "": [t: "sikerül vagy egyenértékű"] # 0xe93b (en: 'succeeds or equivalent to', DeepL translation) - - "": [t: "egyenlő fölött előzi meg"] # 0xe940 (en: 'precedes over equal', DeepL translation) - - "": [t: "sikerül egyenlő felett"] # 0xe941 (en: 'succeeds over equal', DeepL translation) - - "": [t: "kisebb egyenlő ferde nagyobb"] # 0xe942 (en: 'less equal slanted greater', DeepL translation) - - "": [t: "nagyobb egyenlő ferde kisebb"] # 0xe943 (en: 'greater equal slanted less', DeepL translation) - - "": [t: "elégedett"] # 0xe948 (en: 'satisfied by', DeepL translation) - - "": [t: "lazy s"] # 0xe949 (DeepL translation) - - "": [t: "nem állítás"] # 0xe94a (en: 'not assertion', DeepL translation) - - "": [t: "kettős egyenlő"] # 0xe94b (en: 'double equal', DeepL translation) - - "": [t: "hármas egyenlő"] # 0xe94c (en: 'triple equal', DeepL translation) - - "": [t: "szabály késleltetett"] # 0xe94d (en: 'rule delayed', DeepL translation) - - "": [t: "alias elválasztójel"] # 0xe94e (en: 'alias delimiter', DeepL translation) - - "": [t: "normál alcsoportja sávval"] # 0xe950 (en: 'normal subgroup of with bar', DeepL translation) - - "": [t: "tartalmaz normál alcsoportként vonallal"] # 0xe951 (en: 'contains as normal subgroup with bar', DeepL translation) - - "": [t: "kerek implikációk"] # 0xe954 (en: 'round implies', DeepL translation) - - "": [t: "mosoly alatt sáv"] # 0xe955 (en: 'smile under bar', DeepL translation) - - "": [t: "homlokráncolás a sáv fölött"] # 0xe956 (en: 'frown over bar', DeepL translation) - - "": [t: "szuperhalmaza vagy majdnem egyenlő"] # 0xe957 (en: 'superset of or almost equal to', DeepL translation) - - "": [t: "részhalmaza vagy majdnem egyenlő"] # 0xe958 (en: 'subset of or almost equal to', DeepL translation) - - "": [t: "nagyobb, mint majdnem egyenlő vagy kisebb, mint"] # 0xe959 (en: 'greater than almost equal to or less than', DeepL translation) - - "": [t: "kisebb, mint majdnem egyenlő vagy nagyobb, mint"] # 0xe95a (en: 'less than almost equal or greater than', DeepL translation) - - "": [t: "dupla logikai vagy"] # 0xe95c (en: 'double logical or', DeepL translation) - - "": [t: "kettős logikai és"] # 0xe95d (en: 'double logical and', DeepL translation) - - "": [t: "logikai vagy alatta kettős vonallal"] # 0xe95e (en: 'logical or with double bar below', DeepL translation) - - "": [t: "logikai vagy vonallal alatta"] # 0xe95f (en: 'logical or with bar below', DeepL translation) - - "": [t: "majdnem egyenlő az egyenlő felett"] # 0xe962 (en: 'almost equal over equal', DeepL translation) - - "": [t: "balra mutató háromszög felező sávval"] # 0xe964 (en: 'left pointing triangle with bisecting bar', DeepL translation) - - "": [t: "jobbra mutató háromszög felező sávval"] # 0xe965 (en: 'right pointing triangle with bisecting bar', DeepL translation) - - "": [t: "egyenlőségjel pontozott felső vonallal"] # 0xe966 (en: 'equals with dotted top line', DeepL translation) - - "": [t: "kettőspont előzi meg"] # 0xe967 (en: 'precedes with colon', DeepL translation) - - "": [t: "sikerül kettősponttal"] # 0xe968 (en: 'succeeds with colon', DeepL translation) - - "": [t: "kisebb, mint vagy egyenlő ferde"] # 0xe969 (en: 'smaller than or equal slanted', DeepL translation) - - "": [t: "nagyobb, mint vagy egyenlő ferde"] # 0xe96a (en: 'larger than or equal slanted', DeepL translation) - - "": [t: "beágyazott nagyon sokkal kisebb, mint"] # 0xe96b (en: 'nested very much less than', DeepL translation) - - "": [t: "beágyazott nagyon sokkal nagyobb, mint"] # 0xe96c (en: 'nested very much greater than', DeepL translation) - - "": [t: "különbség a változatok között"] # 0xe96d (en: 'difference between variant', DeepL translation) - - "": [t: "kisebb, mint nagyobb, mint átfedés"] # 0xe96e (en: 'less than greater than overlay', DeepL translation) - - "": [t: "logikai vagy logikai és felülbélyegzővel"] # 0xe96f (en: 'logical or logical and overlay', DeepL translation) - - "": [t: "superset over superset"] # 0xe970 (DeepL translation) - - "": [t: "részhalmaz részhalmaz felett"] # 0xe971 (en: 'subset over subset', DeepL translation) - - "": [t: "superset over subset"] # 0xe972 (DeepL translation) - - "": [t: "részhalmaz a szuperhalmaz felett"] # 0xe973 (en: 'subset over superset', DeepL translation) - - "": [t: "háromszoros függőleges vonal"] # 0xe979 (en: 'triple vertical bar', DeepL translation) - - "": [t: "páros négyes függőleges pontok"] # 0xe97a (en: 'paired quadruple vertical dots', DeepL translation) - - "": [t: "merőlegesen a sáv fölött"] # 0xe97b (en: 'perpendicular over bar', DeepL translation) - - "": [t: "balra forduló kettős függőleges sáv"] # 0xe97c (en: 'left turnstile double vertical bar', DeepL translation) - - "": [t: "kettős balra forduló kettős függőleges sáv"] # 0xe97d (en: 'double left turnstile double vertical bar', DeepL translation) - - "": [t: "merőleges a fordított merőleges felett"] # 0xe97e (en: 'perpendicular over inverted perpendicular', DeepL translation) - - "": [t: "dupla balra forduló függőleges sáv"] # 0xe97f (en: 'double left turnstile vertical bar', DeepL translation) - - "": [t: "gömbszöget nyitó"] # 0xe980 (en: 'spherical angle opening up', DeepL translation) - - "": [t: "kettős átlós"] # 0xe981 (en: 'double slash', DeepL translation) - - "": [t: "derékszög a sarokkal"] # 0xe982 (en: 'right angle with corner', DeepL translation) - - "": [t: "bekarikázott függőleges sáv"] # 0xe984 (en: 'circled vertical bar', DeepL translation) - - "": [t: "bekarikázott osztásjel"] # 0xe985 (en: 'circled division sign', DeepL translation) - - "": [t: "szaggatott solidus"] # 0xe986 (en: 'dashed solidus', DeepL translation) - - "": [t: "szaggatott backslash"] # 0xe987 (en: 'dashed backslash', DeepL translation) - - "": [t: "szaggatott középvonallal"] # 0xe988 (en: 'dashed mid line', DeepL translation) - - "": [t: "szaggatott függőleges vonallal"] # 0xe989 (en: 'dashed vertical bar', DeepL translation) - - "": [t: "merőleges s-szel"] # 0xe98a (en: 'perpendicular with s', DeepL translation) - - "": [t: "szög s-sel"] # 0xe98b (en: 'angle with s', DeepL translation) - - "": [t: "gömbszög nyílás balra"] # 0xe98c (en: 'spherical angle opening left', DeepL translation) - - "": [t: "balra nyíló szög"] # 0xe98d (en: 'angle opening left', DeepL translation) - - "": [t: "függőleges sáv dupla horoggal"] # 0xe98e (en: 'vertical bar with double hook', DeepL translation) - - "": [t: "közepes pont operátor szabad gyök"] # 0xe98f (en: 'medium dot operator free radical', DeepL translation) - - "": [t: "fehér felfelé mutató háromszög a sáv felett"] # 0xe990 (en: 'white up pointing triangle above bar', DeepL translation) - - "": [t: "azonos és párhuzamos"] # 0xe991 (en: 'identical and parallel to', DeepL translation) - - "": [t: "smash termék"] # 0xe992 (en: 'smash product', DeepL translation) - - "": [t: "hármas sávkezelő vízszintes vonallal"] # 0xe993 (en: 'triple bar operator with horizontal bar', DeepL translation) - - "": [t: "azonos a kettős vonallal"] # 0xe994 (en: 'identical to with double slash', DeepL translation) - - "": [t: "háromszoros keresztezett sávok"] # 0xe995 (en: 'triple crossed bars', DeepL translation) - - "": [t: "függőleges sáv a kör felett"] # 0xe996 (en: 'vertical bar over circle', DeepL translation) - - "": [t: "függőleges arányos"] # 0xe997 (en: 'vertical proportional to', DeepL translation) - - "": [t: "fekete utolsó negyed hold"] # 0xe998 (en: 'black last quarter moon', DeepL translation) - - "": [t: "fekete első negyed hold"] # 0xe999 (en: 'black first quarter moon', DeepL translation) - - "": [t: "negatív szinuszjel"] # 0xe9a0 (en: 'negative sine wave', DeepL translation) - - "": [t: "zárójeles zárójeles pont"] # 0xe9a1 (en: 'parenthesized dot', DeepL translation) - - "": [t: "zárójeliss"] # 0xe9a2 (en: 'parens', DeepL translation) - - "": [t: "fehér mosoly"] # 0xe9a3 (en: 'white smile', DeepL translation) - - "": [t: "fehér homlokráncolás"] # 0xe9a4 (en: 'white frown', DeepL translation) - - "": [t: "hatszög"] # 0xe9a5 (en: 'hexagon', DeepL translation) - - "": [t: "egyenértékű a plusz fölött"] # 0xe9a6 (en: 'equivalent to over plus', DeepL translation) - - "": [t: "plusz felett egyenértékű"] # 0xe9a7 (en: 'plus over equivalent to', DeepL translation) - - "": [t: "keresztező szerifák"] # 0xe9b0 (en: 'intersection serifs', DeepL translation) - - "": [t: "unió szerifák"] # 0xe9b1 (en: 'union serifs', DeepL translation) - - "": [t: "négyzet metsző szerif"] # 0xe9b2 (en: 'square intersection serifs', DeepL translation) - - "": [t: "szögletes egyesített szeriuszok"] # 0xe9b3 (en: 'square union serifs', DeepL translation) - - "": [t: "megelőzi egyenértékű vagy követi"] # 0xe9e0 (en: 'precedes equivalent to or succeeds', DeepL translation) - - "": [t: "sikerül egyenértékű vagy megelőzi"] # 0xe9e1 (en: 'succeeds equivalent to or precedes', DeepL translation) - - "": [t: "megelőzi majdnem egyenlő vagy sikerül"] # 0xe9e2 (en: 'precedes almost equal to or succeeds', DeepL translation) - - "": [t: "sikerül majdnem egyenlő vagy megelőzi"] # 0xe9e3 (en: 'succeeds almost equal to or precedes', DeepL translation) - - "": [t: "kisebb, mint egyenértékű vagy nagyobb, mint"] # 0xe9f0 (en: 'less than equivalent to or greater than', DeepL translation) - - "": [t: "nagyobb, mint egyenlő vagy kisebb, mint"] # 0xe9f1 (en: 'greater than equivalent to or less than', DeepL translation) - - "": [t: "nem vert sokkal kisebb, mint"] # 0xea00 (en: 'not vert much less than', DeepL translation) - - "": [t: "not vert sokkal nagyobb, mint"] # 0xea01 (en: 'not vert much greater than', DeepL translation) - - "": [t: "nem sokkal kevesebb, mint változat"] # 0xea02 (en: 'not much less than variant', DeepL translation) - - "": [t: "nem sokkal nagyobb, mint változat"] # 0xea03 (en: 'not much greater than variant', DeepL translation) - - "": [t: "kevesebb vert nem dupla egyenlőségjel"] # 0xea04 (en: 'less vert not double equals', DeepL translation) - - "": [t: "gt vert nem dupla egyenlőség"] # 0xea05 (en: 'gt vert not double equals', DeepL translation) - - "": [t: "nem kevesebb vagy egyenlő"] # 0xea06 (en: 'not less than or equal to', DeepL translation) - - "": [t: "nem nagyobb vagy egyenlő"] # 0xea07 (en: 'not greater than or equal to', DeepL translation) - - "": [t: "sem egyenlő, sem kisebb, mint"] # 0xea09 (en: 'neither equal to nor less than', DeepL translation) - - "": [t: "nem tartalmazza vagy egyenlő"] # 0xea0a (en: 'does not contain or equal to', DeepL translation) - - "": [t: "sem nem szuperhalmaza, sem nem egyenlő vele"] # 0xea0b (en: 'neither superset of nor equal to', DeepL translation) - - "": [t: "sem részhalmaza, sem egyenlő"] # 0xea0c (en: 'neither subset of nor equal to', DeepL translation) - - "": [t: "fordított solidus részhalmaz"] # 0xea0d (en: 'reverse solidus subset', DeepL translation) - - "": [t: "sem egyenlő, sem nagyobb, mint"] # 0xea0e (en: 'neither equal to nor greater than', DeepL translation) - - "": [t: "nem mínusz tilde operátor"] # 0xea0f (en: 'not minus tilde operator', DeepL translation) - - "": [t: "sem egyenlő, sem kisebb, mint"] # 0xea10 (en: 'neither equal to nor less than', DeepL translation) - - "": [t: "nem tilde operátor"] # 0xea11 (en: 'not tilde operator', DeepL translation) - - "": [t: "nem eleme vagy egyenlő"] # 0xea12 (en: 'not element of or equal to', DeepL translation) - - "": [t: "sem egyenlő, sem nagyobb, mint"] # 0xea13 (en: 'neither equal to nor greater than', DeepL translation) - - "": [t: "nem majdnem egyenlő"] # 0xea14 (en: 'not almost equal', DeepL translation) - - "": [t: "nem sikerül hasonló"] # 0xea15 (en: 'not succeeds similar', DeepL translation) - - "": [t: "kisebb, mint vagy ferde egyenlő, ferdehajlással"] # 0xea16 (en: 'less than or slanted equal to with slash', DeepL translation) - - "": [t: "nagyobb, mint vagy ferde egyenlő ferdén"] # 0xea17 (en: 'greater than or slanted equal to with slash', DeepL translation) - - "": [t: "szuperszett szolidus"] # 0xea1a (en: 'superset solidus', DeepL translation) - - "": [t: "nem tartalmazza"] # 0xea1b (en: 'does not contain', DeepL translation) - - "": [t: "nem kevesebb vagy egyenlő"] # 0xea1d (en: 'not less than or equal to', DeepL translation) - - "": [t: "nem nagyobb vagy egyenlő"] # 0xea1e (en: 'not greater than or equal to', DeepL translation) - - "": [t: "nem majdnem egyenlő mínusz"] # 0xea1f (en: 'not almost equal to minus', DeepL translation) - - "": [t: "negált halmazhoz tartozás pont felett"] # 0xea22 (en: 'negated set membership dot above', DeepL translation) - - "": [t: "nem vert szög"] # 0xea2c (en: 'not vert angle', DeepL translation) - - "": [t: "nem párhuzamos ferde"] # 0xea2d (en: 'not parallel slanted', DeepL translation) - - "": [t: "nem bar operátor"] # 0xea2e (en: 'not bar operator', DeepL translation) - - "": [t: "nem dupla sáv operátor"] # 0xea2f (en: 'not double bar operator', DeepL translation) - - "": [t: "nem hármas vonallal operátor"] # 0xea30 (en: 'not triple bar operator', DeepL translation) - - "": [t: "kisebb, mint, de nem közelítőleg egyenlő"] # 0xea32 (en: 'less than but not approximately equal to', DeepL translation) - - "": [t: "nagyobb, mint, de nem közelítőleg egyenlő"] # 0xea33 (en: 'greater than but not approximately equal to', DeepL translation) - - "": [t: "kisebb vagy nem egyenlő"] # 0xea34 (en: 'less than or not equal to', DeepL translation) - - "": [t: "nagyobb, mint vagy nem egyenlő"] # 0xea35 (en: 'greater than or not equal to', DeepL translation) - - "": [t: "nem beágyazott kisebb, mint"] # 0xea36 (en: 'not nested less than', DeepL translation) - - "": [t: "nem beágyazott nagyobb, mint"] # 0xea37 (en: 'not nested greater than', DeepL translation) - - "": [t: "nem sokkal kisebb, mint"] # 0xea38 (en: 'not much less than', DeepL translation) - - "": [t: "nem sokkal nagyobb, mint"] # 0xea39 (en: 'not much greater than', DeepL translation) - - "": [t: "megelőzi, de nem egyenértékű"] # 0xea3a (en: 'precedes but not equivalent to', DeepL translation) - - "": [t: "sikerül, de nem egyenlő"] # 0xea3b (en: 'succeeds but not equivalent to', DeepL translation) - - "": [t: "megelőzi, de nem egyenlő vele"] # 0xea3c (en: 'precedes but not equal to', DeepL translation) - - "": [t: "sikerül, de nem egyenlő"] # 0xea3d (en: 'succeeds but not equal to', DeepL translation) - - "": [t: "nem egyenlő vagy megelőzi"] # 0xea3e (en: 'does not equal or precede', DeepL translation) - - "": [t: "nem egyenlő vagy nem követi"] # 0xea3f (en: 'does not equal or succeed', DeepL translation) - - "": [t: "megelőzi, de nem egyenlő vele"] # 0xea40 (en: 'precedes but not equal to', DeepL translation) - - "": [t: "sikerül, de nem egyenlő"] # 0xea41 (en: 'succeeds but not equal to', DeepL translation) - - "": [t: "nem részhalmaza és nem egyenlő"] # 0xea42 (en: 'not subset of nor equal to', DeepL translation) - - "": [t: "not superset of nor equal to"] # 0xea43 (DeepL translation) - - "": [t: "részhalmaza vagy nem egyenlő"] # 0xea44 (en: 'subset of or not equal to', DeepL translation) - - "": [t: "szuperhalmaza vagy nem egyenlő"] # 0xea45 (en: 'superset of or not equal to', DeepL translation) - - "": [t: "nem részhalmaza és nem egyenlő"] # 0xea46 (en: 'not subset of nor equal to', DeepL translation) - - "": [t: "not superset of nor equal to"] # 0xea47 (DeepL translation) - - "": [t: "nem háromszor kisebb, mint"] # 0xea48 (en: 'not triple less than', DeepL translation) - - "": [t: "nem hármas nagyobb, mint"] # 0xea49 (en: 'not triple greater than', DeepL translation) - - "": [t: "nem előzi meg az egyenlőségjelet"] # 0xea4c (en: 'not precedes equals', DeepL translation) - - "": [t: "nem sikerül egyenlő"] # 0xea4d (en: 'not succeeds equals', DeepL translation) - - "": [t: "nem normál alcsoportja a barral"] # 0xea50 (en: 'not normal subgroup of with bar', DeepL translation) - - "": [t: "nem tartalmaz normál alcsoportként sávos alcsoportot"] # 0xea51 (en: 'does not contain as normal subgroup with bar', DeepL translation) - - "": [t: "nem különbség a"] # 0xea52 (en: 'not difference between', DeepL translation) - - "": [t: "geometriailag nem egyenértékű"] # 0xea53 (en: 'not geometrically equivalent to', DeepL translation) - - "": [t: "nem függőlegesen hasonló"] # 0xea54 (en: 'not vert similar', DeepL translation) - - "": [t: "nem egyenlő vagy hasonló"] # 0xea55 (en: 'not equal or similar', DeepL translation) - - "": [t: "nem vert közelítő"] # 0xea56 (en: 'not vert approximate', DeepL translation) - - "": [t: "nem megközelítőleg azonos"] # 0xea57 (en: 'not approximately identical to', DeepL translation) - - "": [t: "nem dudoros egyenlőségjel"] # 0xea58 (en: 'not bumpy equals', DeepL translation) - - "": [t: "nem döcögő egyetlen egyenlő"] # 0xea59 (en: 'not bumpy single equals', DeepL translation) - - "": [t: "nem egyenlő pont"] # 0xea5a (en: 'not equal dot', DeepL translation) - - "": [t: "fordított nem egyenértékű"] # 0xea5b (en: 'reverse not equivalent', DeepL translation) - - "": [t: "nem négyzet részhalmaz"] # 0xea60 (en: 'not square subset', DeepL translation) - - "": [t: "nem négyzetes szuperhalmaz"] # 0xea61 (en: 'not square superset', DeepL translation) - - "": [t: "nem majdnem egyenlő az egyenlővel"] # 0xea62 (en: 'not almost equal over equal', DeepL translation) - - "": [t: "nem teljesen egyenértékű"] # 0xea63 (en: 'not strictly equivalent to', DeepL translation) - - "": [t: "nem egybeeső pont"] # 0xea64 (en: 'not congruent dot', DeepL translation) - - "": [t: "fordított nem egyenlő"] # 0xea65 (en: 'reverse not equal', DeepL translation) - - "": [t: "nem vert bal oldali háromszög egyenlő"] # 0xea70 (en: 'not vert left triangle equals', DeepL translation) - - "": [t: "nem vert jobb háromszög egyenlő"] # 0xea71 (en: 'not vert right triangle equals', DeepL translation) - - "": [t: "nem részleges"] # 0xea80 (en: 'not partial', DeepL translation) - - "": [t: "nyíl díszítés meghosszabbító"] # 0xeb00 (en: 'arrow embellishment extender', DeepL translation) - - "": [t: "nyíl jobbra a nyíl balra"] # 0xeb01 (en: 'arrow right over arrow left', DeepL translation) - - "": [t: "nyíl jobbra a nyíl balra"] # 0xeb02 (en: 'arrow right over arrow left', DeepL translation) - - "": [t: "szigony jobbra a szigony balra"] # 0xeb03 (en: 'harpoon right over harpoon left', DeepL translation) - - "": [t: "szigony jobbra a szigony balra"] # 0xeb04 (en: 'harpoon right over harpoon left', DeepL translation) - - "": [t: "dupla nyíl északkelet délnyugat"] # 0xeb05 (en: 'double arrow northeast southwest', DeepL translation) - - "": [t: "kettős nyíl északnyugat délkelet"] # 0xeb06 (en: 'double arrow northwest southeast', DeepL translation) - - "": [t: "vízszintes szigonyhosszabbító"] # 0xeb07 (en: 'horizontal harpoon extender', DeepL translation) - - "": [t: "óramutató járásával ellentétes ívű balra mutató nyíl"] # 0xeb08 (en: 'anticlockwise arc left arrow', DeepL translation) - - "": [t: "az óramutató járásával ellentétes ívű jobbra mutató nyíl"] # 0xeb09 (en: 'anticlockwise arc right arrow', DeepL translation) - - "": [t: "nagy jobbra mutató nyíl ékezet"] # 0xeb0b (en: 'large right arrow accent', DeepL translation) - - "": [t: "nagy bal nyíl ékezet"] # 0xeb0c (en: 'large left arrow accent', DeepL translation) - - "": [t: "bal nyílhegy"] # 0xeb0d (en: 'left arrowhead', DeepL translation) - - "": [t: "jobb oldali nyílhegy"] # 0xeb0e (en: 'right arrowhead', DeepL translation) - - "": [t: "nagy balra jobbra nyíl vonallal"] # 0xeb0f (en: 'large left right arrow with stroke', DeepL translation) - - "": [t: "vízszintes kettős nyíl meghosszabbítása"] # 0xeb10 (en: 'horizontal double arrow extender', DeepL translation) - - "": [t: "nagy bal oldali jobb oldali kettős nyíl vonallal"] # 0xeb11 (en: 'large left right double arrow with stroke', DeepL translation) - - "": [t: "lefelé mutató nyíl balra a felfelé mutató nyílból"] # 0xeb12 (en: 'down arrow left of up arrow', DeepL translation) - - "": [t: "balra nyíl sarokkal lefelé"] # 0xeb13 (en: 'left arrow with corner down', DeepL translation) - - "": [t: "jobbra mutató nyíl sarokkal felfelé"] # 0xeb14 (en: 'right arrow with corner up', DeepL translation) - - "": [t: "bal nyíl sarokkal felfelé"] # 0xeb15 (en: 'left arrow with corner up', DeepL translation) - - "": [t: "az óramutató járásával ellentétes irányú felső félköríves nyíl plusszal"] # 0xeb16 (en: 'anticlockwise top semicircle arrow with plus', DeepL translation) - - "": [t: "az óramutató járásával megegyező irányú felső félköríves nyíl mínuszokkal"] # 0xeb17 (en: 'clockwise top semicircle arrow with minus', DeepL translation) - - "": [t: "jobbra nyilazott farok vonallal"] # 0xeb18 (en: 'right arrow with tail with stroke', DeepL translation) - - "": [t: "jobb szigony lefelé"] # 0xeb19 (en: 'right harpoon down', DeepL translation) - - "": [t: "bal szigony lefelé"] # 0xeb1a (en: 'left harpoon down', DeepL translation) - - "": [t: "bal jobb szigony lefelé"] # 0xeb1b (en: 'left right harpoon down', DeepL translation) - - "": [t: "bal jobb szigony felfelé"] # 0xeb1c (en: 'left right harpoon up', DeepL translation) - - "": [t: "fel le szigony balra"] # 0xeb1d (en: 'up down harpoon left', DeepL translation) - - "": [t: "fel le szigony jobbra"] # 0xeb1e (en: 'up down harpoon right', DeepL translation) - - "": [t: "felfelé mutató nyíl a lefelé mutató nyíl jobb oldalán"] # 0xeb1f (en: 'up arrow to the right of down arrow', DeepL translation) - - "": [t: "bal szigony a rúdhoz szálkával felfelé"] # 0xeb20 (en: 'left harpoon to bar with barb up', DeepL translation) - - "": [t: "jobb szigony a rúdhoz, felfelé irányuló tüskével"] # 0xeb21 (en: 'right harpoon to bar with barb up', DeepL translation) - - "": [t: "bal szigony a rúdra szálkával lefelé"] # 0xeb22 (en: 'left harpoon to bar with barb down', DeepL translation) - - "": [t: "jobb szigony a rúdhoz lefelé irányuló szálkával"] # 0xeb23 (en: 'right harpoon to bar with barb down', DeepL translation) - - "": [t: "bal szigony a rúdról felfelé irányuló szálkával"] # 0xeb24 (en: 'left harpoon from bar with barb up', DeepL translation) - - "": [t: "jobb szigony a rúdról felfelé álló szálkával"] # 0xeb25 (en: 'right harpoon from bar with barb up', DeepL translation) - - "": [t: "bal szigony a rúdról lefelé irányuló szálkával"] # 0xeb26 (en: 'left harpoon from bar with barb down', DeepL translation) - - "": [t: "jobb oldali szigony rúdról lefelé irányuló szálkával"] # 0xeb27 (en: 'right harpoon from bar with barb down', DeepL translation) - - "": [t: "felfelé szigony a rúd balra tartó vonóhoroggal"] # 0xeb28 (en: 'up harpoon to bar with barb left', DeepL translation) - - "": [t: "lefelé szigorított sáv bal oldali szúrószeggel"] # 0xeb29 (en: 'down harpoon to bar with barb left', DeepL translation) - - "": [t: "fel szigonyt a rúdhoz jobbra szúrószöggel"] # 0xeb2a (en: 'up harpoon to bar with barb right', DeepL translation) - - "": [t: "lefelé szigony a rúddal jobbra lévő tüskével"] # 0xeb2b (en: 'down harpoon to bar with barb right', DeepL translation) - - "": [t: "felfelé szigorított vonaltól balra lévő vonallal"] # 0xeb2c (en: 'up harpoon from bar with barb left', DeepL translation) - - "": [t: "lefelé irányuló szigony vonaltól balra lévő szálkával"] # 0xeb2d (en: 'down harpoon from bar with barb left', DeepL translation) - - "": [t: "felfelé nyilazás bárból szálkával jobbra"] # 0xeb2e (en: 'up harpoon from bar with barb right', DeepL translation) - - "": [t: "lefelé szigony a rúdtól jobbra szálkás"] # 0xeb2f (en: 'down harpoon from bar with barb right', DeepL translation) - - "": [t: "felfelé nyíl a bárra"] # 0xeb30 (en: 'up arrow to bar', DeepL translation) - - "": [t: "lefelé mutató nyíl a sávra"] # 0xeb31 (en: 'down arrow to bar', DeepL translation) - - "": [t: "fel szigony a lefelé irányuló szigonytól balra"] # 0xeb32 (en: 'up harpoon to the left of down harpoon', DeepL translation) - - "": [t: "up szigony jobbra le szigony"] # 0xeb33 (en: 'up harpoon to the right of down harpoon', DeepL translation) - - "": [t: "felfelé mutató nyílhegy"] # 0xeb34 (en: 'up arrowhead', DeepL translation) - - "": [t: "lefelé mutató nyílhegy"] # 0xeb35 (en: 'down arrowhead', DeepL translation) - - "": [t: "kettős szigony bal oldali szúróval lefelé jobb oldali szúróval felfelé"] # 0xeb36 (en: 'double harpoon with left barb down right barb up', DeepL translation) - - "": [t: "dupla szigony balra szúrószöggel felfelé jobbra szúrószög lefelé"] # 0xeb37 (en: 'double harpoon with left barb up right barb down', DeepL translation) - - "": [t: "bal nyíl a sáv felett"] # 0xeb38 (en: 'left arrow over bar', DeepL translation) - - "": [t: "jobbra nyíl a sáv felett"] # 0xeb39 (en: 'right arrow over bar', DeepL translation) - - "": [t: "bal nyíl a sáv alatt"] # 0xeb3a (en: 'left arrow under bar', DeepL translation) - - "": [t: "jobbra nyíl a sáv alatt"] # 0xeb3b (en: 'right arrow under bar', DeepL translation) - - "": [t: "balra jobbra háromszoros nyíl"] # 0xeb3c (en: 'left right triple arrow', DeepL translation) - - "": [t: "kettős nyíl északkelet délkelet"] # 0xeb3f (en: 'double arrow northeast southeast', DeepL translation) - - "": [t: "az óramutató járásával ellentétes irányú bal oldali félköríves nyíl"] # 0xeb40 (en: 'anticlockwise left semicircle arrow', DeepL translation) - - "": [t: "óramutató járásával megegyezően balra félköríves nyíl"] # 0xeb41 (en: 'clockwise left semicircle arrow', DeepL translation) - - "": [t: "balra nyitott kör balra jobbra nyíl"] # 0xeb42 (en: 'left open circle left right arrow', DeepL translation) - - "": [t: "jobbra mutató nyíl tilde felett"] # 0xeb44 (en: 'right arrow over tilde', DeepL translation) - - "": [t: "bal nyíl a tilde felett"] # 0xeb45 (en: 'left arrow over tilde', DeepL translation) - - "": [t: "bal szigony a sáv fölött"] # 0xeb48 (en: 'left harpoon over bar', DeepL translation) - - "": [t: "jobb oldali szigony a sáv fölött"] # 0xeb49 (en: 'right harpoon over bar', DeepL translation) - - "": [t: "bal szigony a sáv alatt"] # 0xeb4a (en: 'left harpoon under bar', DeepL translation) - - "": [t: "jobb oldali szigony a sáv alatt"] # 0xeb4b (en: 'right harpoon under bar', DeepL translation) - - "": [t: "guggolt fekete balra nyíl"] # 0xeb4c (en: 'squat black left arrow', DeepL translation) - - "": [t: "az óramutató járásával megegyezően jobbra félköríves nyíl"] # 0xeb50 (en: 'clockwise right semicircle arrow', DeepL translation) - - "": [t: "az óramutató járásával ellentétes irányú jobb oldali félköríves nyíl"] # 0xeb51 (en: 'anticlockwise right semicircle arrow', DeepL translation) - - "": [t: "balra nyitott kör balra jobbra szigony"] # 0xeb52 (en: 'left open circle left right harpoon', DeepL translation) - - "": [t: "fel nyíl balra függőleges sávból"] # 0xeb58 (en: 'up arrow left of vertical bar', DeepL translation) - - "": [t: "lefelé mutató nyíl balra függőleges vonaltól"] # 0xeb59 (en: 'down arrow left of vertical bar', DeepL translation) - - "": [t: "felfelé nyíl a függőleges vonaltól jobbra"] # 0xeb5a (en: 'up arrow right of vertical bar', DeepL translation) - - "": [t: "lefelé mutató nyíl a függőleges sáv jobb oldalán"] # 0xeb5b (en: 'down arrow right of vertical bar', DeepL translation) - - "": [t: "jobb nyíl meghosszabbított lefelé mutató horoggal"] # 0xeb5c (en: 'right arrow with extended down hook', DeepL translation) - - "": [t: "bal nyíl meghosszabbított horoggal"] # 0xeb5d (en: 'left arrow with extended hook', DeepL translation) - - "": [t: "bal nyíl meghosszabbított lefelé irányuló horoggal"] # 0xeb5e (en: 'left arrow with extended down hook', DeepL translation) - - "": [t: "jobb nyíl meghosszabbított horoggal"] # 0xeb5f (en: 'right arrow with extended hook', DeepL translation) - - "": [t: "nem jobbra nyíl hullámos"] # 0xeb60 (en: 'not right arrow wavy', DeepL translation) - - "": [t: "nem jobbra ívelő nyíl"] # 0xeb61 (en: 'not right arrow curved', DeepL translation) - - "": [t: "felfelé szigony balra függőleges sáv"] # 0xeb68 (en: 'up harpoon left of vertical bar', DeepL translation) - - "": [t: "lefelé szigony balra függőleges sáv"] # 0xeb69 (en: 'down harpoon left of vertical bar', DeepL translation) - - "": [t: "felfelé szigony a függőleges sáv jobb oldalán"] # 0xeb6a (en: 'up harpoon right of vertical bar', DeepL translation) - - "": [t: "lefelé mutató szigony jobbra függőleges sáv"] # 0xeb6b (en: 'down harpoon right of vertical bar', DeepL translation) - - "": [t: "függőleges dupla nyíl meghosszabbító"] # 0xeb6c (en: 'vertical double arrow extender', DeepL translation) - - "": [t: "függőleges szigony bal oldali tüskés hosszabbítóval"] # 0xeb6d (en: 'vertical harpoon with barb left extender', DeepL translation) - - "": [t: "függőleges szigony szúrós jobb oldali nyúlvány"] # 0xeb6e (en: 'vertical harpoon with barb right extender', DeepL translation) - - "": [t: "jobb szigony a bal szigony felett jobbra"] # 0xeb6f (en: 'right harpoon over left harpoon right', DeepL translation) - - "": [t: "jobb szigony a bal szigony felett balra"] # 0xeb70 (en: 'right harpoon over left harpoon left', DeepL translation) - - "": [t: "bal szigony felett jobb szigony jobbra"] # 0xeb71 (en: 'left harpoon over right harpoon right', DeepL translation) - - "": [t: "bal szigony a jobb szigony felett balra"] # 0xeb72 (en: 'left harpoon over right harpoon left', DeepL translation) - - "": [t: "balra mutató nyíl sávos nyílvesszőből"] # 0xeb73 (en: 'left arrow from bar arrowhead', DeepL translation) - - "": [t: "balra jobbra mutató nyíl a sáv meghosszabbítójából"] # 0xeb74 (en: 'left right arrow from bar extender', DeepL translation) - - "": [t: "bal nyíl a sáv farkából"] # 0xeb75 (en: 'left arrow from bar tail', DeepL translation) - - "": [t: "jobbra mutató nyíl a sáv farkából"] # 0xeb76 (en: 'right arrow from bar tail', DeepL translation) - - "": [t: "jobbra nyíl a sáv nyílvesszőtől"] # 0xeb77 (en: 'right arrow from bar arrowhead', DeepL translation) - - "": [t: "felfelé szigony a rúdról szúrós bal nyílheggyel"] # 0xeb78 (en: 'up harpoon from bar with barb left arrowhead', DeepL translation) - - "": [t: "jobb nyíl a bal nyíl felett jobbra"] # 0xeb79 (en: 'right arrow over left arrow right', DeepL translation) - - "": [t: "jobb nyíl bal nyíl fölött bal nyíl balra"] # 0xeb7a (en: 'right arrow over left arrow left', DeepL translation) - - "": [t: "bal nyíl jobb nyíl felett jobb nyíl jobbra"] # 0xeb7b (en: 'left arrow over right arrow right', DeepL translation) - - "": [t: "bal nyíl a jobb nyíl felett balra"] # 0xeb7c (en: 'left arrow over right arrow left', DeepL translation) - - "": [t: "felfelé nyíl a rúd nyílhegyéről"] # 0xeb7d (en: 'up arrow from bar arrowhead', DeepL translation) - - "": [t: "felfelé mutató nyíl a sáv végéből"] # 0xeb7e (en: 'up arrow from bar tail', DeepL translation) - - "": [t: "lefelé mutató nyíl a sáv farkából"] # 0xeb7f (en: 'down arrow from bar tail', DeepL translation) - - "": [t: "lefelé mutató nyíl a bár nyílhegyéből"] # 0xeb80 (en: 'down arrow from bar arrowhead', DeepL translation) - - "": [t: "lefelé szigony a sávból szúrós jobb oldali nyílhegy"] # 0xeb81 (en: 'down harpoon from bar with barb right arrowhead', DeepL translation) - - "": [t: "felfelé szigony balra lefelé szigony alul"] # 0xeb82 (en: 'up harpoon to the left of down harpoon bottom', DeepL translation) - - "": [t: "felfelé szigony balra a lefelé szigony meghosszabbítás"] # 0xeb83 (en: 'up harpoon to the left of down harpoon extender', DeepL translation) - - "": [t: "lefelé mutató szigony balra a felfelé mutató szigony tetején"] # 0xeb84 (en: 'down harpoon to the left of up harpoon top', DeepL translation) - - "": [t: "felfelé szigony balra lefelé szigony tetején"] # 0xeb85 (en: 'up harpoon to the left of down harpoon top', DeepL translation) - - "": [t: "lefelé szigony a felfelé szigony meghosszabbítótól balra"] # 0xeb86 (en: 'down harpoon to the left of the up harpoon extender', DeepL translation) - - "": [t: "lefelé szigony a felfelé szigony aljától balra"] # 0xeb87 (en: 'down harpoon to the left of the up harpoon bottom', DeepL translation) - - "": [t: "felfelé nyíl balra lefelé nyíl alul"] # 0xeb88 (en: 'up arrow left of down arrow bottom', DeepL translation) - - "": [t: "lefelé mutató nyíl balra felfelé mutató nyíl felül"] # 0xeb89 (en: 'down arrow left of up arrow top', DeepL translation) - - "": [t: "felfelé nyíl balra lefelé nyíl felül"] # 0xeb8a (en: 'up arrow left of down arrow top', DeepL translation) - - "": [t: "lefelé mutató nyíl balra a felfelé mutató nyíl alul"] # 0xeb8b (en: 'down arrow left of up arrow bottom', DeepL translation) - - "": [t: "bal jobb nyíl meghosszabbító"] # 0xeb8c (en: 'left right arrows extender', DeepL translation) - - "": [t: "észak-keleti nyíl meghosszabbító"] # 0xeb8d (en: 'north east arrow extender', DeepL translation) - - "": [t: "északnyugati nyíl meghosszabbítása"] # 0xeb8e (en: 'north west arrow extender', DeepL translation) - - "": [t: "lefelé mutató merevítő balra"] # 0xec00 (en: 'down pointing brace left', DeepL translation) - - "": [t: "lefelé mutató merevítő középen"] # 0xec01 (en: 'down pointing brace mid', DeepL translation) - - "": [t: "lefelé mutató zárójel jobbra"] # 0xec02 (en: 'down pointing brace right', DeepL translation) - - "": [t: "vízszintes zárójel hosszabbító"] # 0xec03 (en: 'horizontal brace extender', DeepL translation) - - "": [t: "felfelé mutató bal oldali merevítő"] # 0xec04 (en: 'up pointing brace left', DeepL translation) - - "": [t: "felfelé mutató zárójel középen"] # 0xec05 (en: 'up pointing brace mid', DeepL translation) - - "": [t: "felfelé mutató merevítő jobbra"] # 0xec06 (en: 'up-pointing brace right', DeepL translation) - - "": [t: "bal függőleges sáv"] # 0xec07 (en: 'left vertical bar', DeepL translation) - - "": [t: "jobb oldali függőleges sáv"] # 0xec08 (en: 'right vertical bar', DeepL translation) - - "": [t: "bal dupla függőleges sáv"] # 0xec09 (en: 'left double vertical bar', DeepL translation) - - "": [t: "jobb oldali dupla függőleges sáv"] # 0xec0a (en: 'right double vertical bar', DeepL translation) - - "": [t: "vízszintes zárójel hosszabbító"] # 0xec0b (en: 'horizontal bracket extender', DeepL translation) - - "": [t: "szögletes zárójel alatt"] # 0xec0c (en: 'under square bracket', DeepL translation) - - "⎵": [t: "szögletes zárójel alatt"] # 0x23b5 (en: 'under square bracket', DeepL translation) - - "": [t: "szögletes zárójel felett"] # 0xec0d (en: 'over square bracket', DeepL translation) - - "⎴": [t: "szögletes zárójel felett"] # 0x23b4 (en: 'over square bracket', DeepL translation) - - "": [t: "balra zárójel alatt"] # 0xec0e (en: 'under bracket left', DeepL translation) - - "": [t: "zárójel alatt jobbra"] # 0xec0f (en: 'under bracket right', DeepL translation) - - "": [t: "zárójel felett balra"] # 0xec10 (en: 'over bracket left', DeepL translation) - - "": [t: "jobb oldali zárójel felett"] # 0xec11 (en: 'over bracket right', DeepL translation) - - "": [t: "bal zárójel 1"] # 0xec12 (en: 'left parens 1', DeepL translation) - - "": [t: "bal zárójel 2"] # 0xec13 (en: 'left parens 2', DeepL translation) - - "": [t: "bal oldali zárójel 3"] # 0xec14 (en: 'left parens 3', DeepL translation) - - "": [t: "bal zárójel 4"] # 0xec15 (en: 'left parens 4', DeepL translation) - - "": [t: "jobb oldali zárójel 1"] # 0xec16 (en: 'right parens 1', DeepL translation) - - "": [t: "jobb oldali zárójel 2"] # 0xec17 (en: 'right parens 2', DeepL translation) - - "": [t: "jobb oldali zárójel 3"] # 0xec18 (en: 'right parens 3', DeepL translation) - - "": [t: "jobb oldali zárójel 4"] # 0xec19 (en: 'right parens 4', DeepL translation) - - "": [t: "gyök 1"] # 0xec1a (en: 'radical 1', DeepL translation) - - "": [t: "2. radikális"] # 0xec1b (en: 'radical 2', DeepL translation) - - "": [t: "radikális 3"] # 0xec1c (en: 'radical 3', DeepL translation) - - "": [t: "4. gyök"] # 0xec1d (en: 'radical 4', DeepL translation) - - "": [t: "5. gyök"] # 0xec1e (en: 'radical 5', DeepL translation) - - "": [t: "radikális alul"] # 0xec1f (en: 'radical bottom', DeepL translation) - - "": [t: "radikális függőleges bővítmény"] # 0xec20 (en: 'radical vertical extender', DeepL translation) - - "": [t: "radikális felső"] # 0xec21 (en: 'radical top', DeepL translation) - - "": [t: "bal fehér zárójel tetején"] # 0xec22 (en: 'left white bracket top', DeepL translation) - - "": [t: "bal oldali fehér zárójel hosszabbító"] # 0xec23 (en: 'left white bracket extender', DeepL translation) - - "": [t: "bal fehér zárójel alul"] # 0xec24 (en: 'left white bracket bottom', DeepL translation) - - "": [t: "jobb oldali fehér zárójel felül"] # 0xec25 (en: 'right white bracket top', DeepL translation) - - "": [t: "jobb oldali fehér zárójel hosszabbító"] # 0xec26 (en: 'right white bracket extender', DeepL translation) - - "": [t: "jobb oldali fehér zárójel alja"] # 0xec27 (en: 'right white bracket bottom', DeepL translation) - - "": [t: "bal fehér csavart zárójel"] # 0xec30 (en: 'left white curly bracket', DeepL translation) - - "": [t: "jobb oldali fehér görbe zárójel"] # 0xec31 (en: 'right white curly bracket', DeepL translation) - - "": [t: "hosszú osztójel"] # 0xec32 (en: 'long division sign', DeepL translation) - - "": [t: "hosszú osztójel hosszabbító"] # 0xec33 (en: 'long division sign extender', DeepL translation) - - "": [t: "rövid osztás"] # 0xec34 (en: 'short division', DeepL translation) - - "": [t: "dupla délnyugat-északkelet em kötés"] # 0xec40 (en: 'double southwest to northeast em bond', DeepL translation) - - "": [t: "dupla északnyugat-délkelet em kötés"] # 0xec41 (en: 'double northwest to southeast em bond', DeepL translation) - - "": [t: "egyetlen vízszintes em kötés"] # 0xec42 (en: 'single horizontal em bond', DeepL translation) - - "": [t: "kettős vízszintes em kötés"] # 0xec43 (en: 'double horizontal em bond', DeepL translation) - - "": [t: "hármas vízszintes em kötés"] # 0xec44 (en: 'triple horizontal em bond', DeepL translation) - - "": [t: "egyetlen függőleges em kötés"] # 0xec45 (en: 'single vertical em bond', DeepL translation) - - "": [t: "dupla függőleges em kötés"] # 0xec46 (en: 'double vertical em bond', DeepL translation) - - "": [t: "hármas függőleges em kötés"] # 0xec47 (en: 'triple vertical em bond', DeepL translation) - - "": [t: "kevesebb, mint em kötés"] # 0xec48 (en: 'less than em bond', DeepL translation) - - "": [t: "nagyobb mint em kötés"] # 0xec49 (en: 'greater than em bond', DeepL translation) - - "": [t: "egyszerű vízszintes en kötés"] # 0xec4a (en: 'single horizontal en bond', DeepL translation) - - "": [t: "kettős vízszintes en kötés"] # 0xec4b (en: 'double horizontal en bond', DeepL translation) - - "": [t: "hármas vízszintes en kötés"] # 0xec4c (en: 'triple horizontal en bond', DeepL translation) - - "": [t: "bal felső téglalap"] # 0xec80 (en: 'top left rectangle', DeepL translation) - - "": [t: "bal alsó téglalap"] # 0xec81 (en: 'bottom left rectangle', DeepL translation) - - "": [t: "jobb felső téglalap"] # 0xec90 (en: 'top right rectangle', DeepL translation) - - "": [t: "jobb alsó téglalap"] # 0xec91 (en: 'bottom right rectangle', DeepL translation) - - "": [t: "szintetikus osztás sarok"] # 0xec92 (en: 'synthetic division corner', DeepL translation) - - "": [t: "szintetikus osztás vízszintes kiterjesztő"] # 0xec93 (en: 'synthetic division horizontal extender', DeepL translation) - - "": [t: "szintetikus osztás függőleges kiterjesztő"] # 0xec94 (en: 'synthetic division vertical extender', DeepL translation) - - "": [t: "bal mennyezeti padlóhosszabbító"] # 0xec95 (en: 'left ceiling floor extender', DeepL translation) - - "": [t: "jobb oldali mennyezeti padlóhosszabbító"] # 0xec96 (en: 'right ceiling floor extender', DeepL translation) - - "": [t: "zárójel feletti hosszabbító"] # 0xec97 (en: 'over bracket extender', DeepL translation) - - "": [t: "függőleges sávhosszabbító"] # 0xec98 (en: 'vertical bar extender', DeepL translation) - - "": [t: "bal dupla függőleges rúd hosszabbító"] # 0xec99 (en: 'left double vertical bar extender', DeepL translation) - - "": [t: "vízszintes sávhosszabbító"] # 0xec9a (en: 'horizontal bar extender', DeepL translation) - - "": [t: "zárójel alatti hosszabbító"] # 0xec9c (en: 'under bracket extender', DeepL translation) - - "": [t: "lefelé mutató zárójel jobbra"] # 0xec9d (en: 'down pointing paren right', DeepL translation) - - "": [t: "lefelé mutató zárójel hosszabbító"] # 0xec9e (en: 'down pointing paren extender', DeepL translation) - - "": [t: "lefelé mutató zárójel balra"] # 0xec9f (en: 'down pointing paren left', DeepL translation) - - "": [t: "felfelé mutató szalaghosszabbító"] # 0xeca0 (en: 'up pointing brace extender', DeepL translation) - - "": [t: "felfelé mutató zárójel balra"] # 0xeca1 (en: 'up pointing paren left', DeepL translation) - - "": [t: "felfelé mutató zárójel hosszabbító"] # 0xeca2 (en: 'up pointing paren extender', DeepL translation) - - "": [t: "felfelé mutató zárójel jobbra"] # 0xeca3 (en: 'up pointing paren right', DeepL translation) - - "": [t: "lefelé mutató merevítőtartó kiterjesztés"] # 0xeca4 (en: 'down pointing brace extender', DeepL translation) - - "": [t: "planck-állandó a két pi-sáv felett"] # 0xed00 (en: 'planck constant over two pi bar', DeepL translation) - - "": [t: "tükör g"] # 0xed01 (en: 'mirror g', DeepL translation) - - "": [t: "pont nélküli j"] # 0xed02 (en: 'dotless j', DeepL translation) - - "": [t: "digamma"] # 0xed03 (DeepL translation) - - "ϝ": [t: "digamma"] # 0x3dd (DeepL translation) - - "": [t: ""] # 0xed10 (en: 'd', DeepL translation) - - "": [t: ""] # 0xed11 (en: 'e', DeepL translation) - - "": [t: ""] # 0xed12 (en: 'i', DeepL translation) - - "": [t: ""] # 0xed13 (en: 'j', DeepL translation) - - "ⅅ": - - spell: "translate('.', 'ⅅ', 'DD')" # 0xed16, 0x2145 - -# The private use chars are from MathType - - "": [t: "óramutató járásával ellentétes kontúrú integrált hurok"] # 0xee00 (en: 'anticlockwise contour integral loop', DeepL translation) - - "": [t: "az óramutató járásával megegyező irányú körvonalú integrált hurok"] # 0xee01 (en: 'clockwise contour integral loop', DeepL translation) - - "": [t: ""] # 0xee04 - - "": [t: ""] # 0xee05 - - "": [t: ""] # 0xee06 - - "": [t: ""] # 0xee07 - - "": [t: ""] # 0xee08 - - "": [t: ""] # 0xee09 - - "": [t: ""] # 0xee0a - - "": [t: ""] # 0xee0b - - "": [t: ""] # 0xee0c - - "": [t: "közös állapotú díszítés"] # 0xee0d (en: 'joint status embellishment', DeepL translation) - - "": [t: "közös állapot díszítés balra"] # 0xee0e (en: 'joint status embellishment left', DeepL translation) - - "": [t: "közös állapot díszítés jobbra"] # 0xee0f (en: 'joint status embellishment right', DeepL translation) - - "": [t: "közös állapotot díszítő bővítmény"] # 0xee10 (en: 'joint status embellishment extender', DeepL translation) - - "": [t: "integrált hurok"] # 0xee11 (en: 'integral loop', DeepL translation) - - "": [t: "integrált hurok kettős"] # 0xee12 (en: 'integral loop double', DeepL translation) - - "": [t: "integrált hurok hármas"] # 0xee13 (en: 'integral loop triple', DeepL translation) - - "": [t: "bővülő integrál hurok kettős"] # 0xee15 (en: 'expanding integral loop double', DeepL translation) - - "": [t: "bővülő integrálhurok hármasa"] # 0xee16 (en: 'expanding integral loop triple', DeepL translation) - - "": [t: "aszimptotikusan egyenlő az ékezettel"] # 0xee17 (en: 'asymptotically equal to accent', DeepL translation) - - "": [t: "egyenlőségjel ékezet"] # 0xee18 (en: 'equal sign accent', DeepL translation) - - "": [t: "négyszeres prím"] # 0xee19 (en: 'quadruple prime', DeepL translation) - - "": [t: "sávos ékezet nyitott körrel balra"] # 0xee1a (en: 'bar accent with open circle left', DeepL translation) - - "": [t: "sávos ékezet zárt körrel balra"] # 0xee1b (en: 'bar accent with closed circle left', DeepL translation) - - "": [t: "sávos ékezet nyitott körrel jobbra"] # 0xee1c (en: 'bar accent with open circle right', DeepL translation) - - "": [t: "sávos ékezet pont fölött"] # 0xee1d (en: 'bar accent with over dot', DeepL translation) - - "": [t: "sávos ékezet alatta ponttal"] # 0xee1e (en: 'bar accent with under dot', DeepL translation) - - "": [t: "sávos ékezet dupla ponttal"] # 0xee1f (en: 'bar accent with double over dot', DeepL translation) - - "": [t: "sávos ékezet dupla ponttal alatta"] # 0xee20 (en: 'bar accent with double under dot', DeepL translation) - - "": [t: "sávos ékezet vésővel"] # 0xee21 (en: 'bar accent with caret', DeepL translation) - - "": [t: "sűrű alá sávos ékezet"] # 0xee22 (en: 'thick under bar accent', DeepL translation) - - "": [t: "sáv ékezet zárt körrel jobbra"] # 0xee23 (en: 'bar accent with closed circle right', DeepL translation) - - "": [t: "nagy pont felett"] # 0xee24 (en: 'large dot above', DeepL translation) - - "": [t: "igazítójel"] # 0xef00 (en: 'alignment mark', DeepL translation) - - "": [t: ""] # 0xef01 - - "​": [t: ""] # 0x200b - - "": [t: ""] # 0xef02 - - " ": [t: ""] # 0x2009 - - "": [t: ""] # 0xef03 - - " ": [t: ""] # 0x205f - - "": [t: ""] # 0xef04 - - "": [t: ""] # 0xef05 - - "": [t: ""] # 0xef06 - - "": [t: ""] # 0xef07 - - "": [t: ""] # 0xef08 - - "": [t: ""] # 0xef09 - - "": [t: ""] # 0xef0a - - " ": [t: ""] # 0x200a - - "": [t: ""] # 0xef22 - - "": [t: ""] # 0xef23 - - "": [t: ""] # 0xef24 - - "": [t: ""] # 0xef29 - - "": [t: "hiányzó kifejezés"] # 0xef41 (en: 'missing term', DeepL translation) - - "": [t: "az óramutató járásával megegyező irányú integrált nyíl balra"] # 0xef80 (en: 'clockwise contour integral arrow on left', DeepL translation) - - "": [t: "négyzettel egybeépített"] # 0xef81 (en: 'integral with square', DeepL translation) - - "": [t: "integrálható ferdén"] # 0xef82 (en: 'integral with slash', DeepL translation) - - "": [t: "fordított integrál"] # 0xef83 (en: 'reversed integral', DeepL translation) - - "": [t: "dupla nulla a dupla nulla felett"] # 0xef90 (en: 'double zero over double zero', DeepL translation) - - "": [t: "nulla ferdehajlással"] # 0xef91 (en: 'zero with slash', DeepL translation) - - # fraktur chars in math alphabetic block and also MathType private use area - # Some of these are reserved because they were used in Plane 0 -- that shouldn't be an issue other than causing the other chars to not display - - "𝔄-𝔜": # 0x1d504 - 0x1d51d ('z' version is reserved) - - t: "fraktur" # (DeepL translation) - - spell: "translate('.', '𝔄𝔅𝔆𝔇𝔈𝔉𝔊𝔋𝔌𝔍𝔎𝔏𝔐𝔑𝔒𝔓𝔔𝔕𝔖𝔗𝔘𝔙𝔚𝔛𝔜', 'ABCDEFGHIJKLMNOPQRSTUVWXY')" - - - "-": # 0xf000 - 0xf018 - - t: "fraktur" # (DeepL translation) - - spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXY')" - - - "𝔞-𝔷": # 0x1d51e - 0x1d537 - - t: "fraktur" # (DeepL translation) - - spell: "translate('.', '𝔞𝔟𝔠𝔡𝔢𝔣𝔤𝔥𝔦𝔧𝔨𝔩𝔪𝔫𝔬𝔭𝔮𝔯𝔰𝔱𝔲𝔳𝔴𝔵𝔶𝔷', 'abcdefghijklmnopqrstuvwxyz')" - - "-": # 0xf01a - 0xf033 - - t: "fraktur" # (DeepL translation) - - spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" - - - "𝕬-𝖅": # 0x1D56C - 0x1D585 - - t: "fraktur" # (DeepL translation) - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝕬𝕭𝕮𝕯𝕰𝕱𝕲𝕳𝕴𝕵𝕶𝕷𝕸𝕹𝕺𝕻𝕼𝕽𝕾𝕿𝖀𝖁𝖂𝖃𝖄𝖅', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "-": # 0xf040 - 0xf059 - - t: "fraktur" # (DeepL translation) - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "𝖆-𝖟": # 0x1d586 - 0x1d59f - - t: "fraktur" # (DeepL translation) - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝖆𝖇𝖈𝖉𝖊𝖋𝖌𝖍𝖎𝖏𝖐𝖑𝖒𝖓𝖔𝖕𝖖𝖗𝖘𝖙𝖚𝖛𝖜𝖝𝖞𝖟', 'abcdefghijklmnopqrstuvwxyz')" - - "-": # 0xf05a - 0xf073 - - t: "fraktur" # (DeepL translation) - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" - - # double struck (blackboard bold) chars in math alphabetic block and also MathType private use area - # Some of these are reserved because they were used in Plane 0 -- that shouldn't be an issue other than causing the other chars to not display - - "𝔸-𝕐": # 0x1d504 - 0x1d51d ('z' version is reserved) - - T: "dupla leütésű" # (en: 'double struck', DeepL translation) - - spell: "translate('.', '𝔸𝔹𝔺𝔻𝔼𝔽𝔾𝔿𝕀𝕁𝕂𝕃𝕄𝕅𝕆𝕇𝕈𝕉𝕊𝕋𝕌𝕍𝕎𝕏𝕐', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "-": # 0xf080 - 0xf098 - - T: "dupla leütésű" # (en: 'double struck', DeepL translation) - - spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "𝕒-𝕫": # 0x1d552 - 0x1d56b - - T: "dupla leütésű" # (en: 'double struck', DeepL translation) - - spell: "translate('.', '𝕒𝕓𝕔𝕕𝕖𝕗𝕘𝕙𝕚𝕛𝕜𝕝𝕞𝕟𝕠𝕡𝕢𝕣𝕤𝕥𝕦𝕧𝕨𝕩𝕪𝕫', 'abcdefghijklmnopqrstuvwxyz')" - - "-": # 0xf09a - 0xf0b3 - - T: "dupla leütésű" # (en: 'double struck', DeepL translation) - - spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" - - "𝟘-𝟡": # 0x1d7d8 - 0x1d7e1 - - T: "dupla leütésű" # (en: 'double struck', DeepL translation) - - spell: "translate('.', '𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡', '0123456789')" - - "-": # 0xf0c0 - 0xf0c9 - - T: "dupla leütésű" # (en: 'double struck', DeepL translation) - - spell: "translate('.', '', '0123456789')" - - - "": [t: "dupla leütött nahblah"] # 0xf0ca (en: 'double struck nahblah', DeepL translation) - - "": [t: "dupla leütött euler-állandó"] # 0xf0cb (en: 'double struck euler constant', DeepL translation) - - # script chars in math alphabetic block and also MathType private use area - - "𝒜-𝒵": # 0x1d49c - 0x1d4b5 - - t: "script" # (DeepL translation) - - spell: "translate('.', '𝒜𝒝𝒞𝒟𝒠𝒡𝒢𝒣𝒤𝒥𝒦𝒧𝒨𝒩𝒪𝒫𝒬𝒭𝒮𝒯𝒰𝒱𝒲𝒳𝒴𝒵', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "-": # 0xf100 - 0xf119 - - t: "script" # (DeepL translation) - - spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "𝒶-𝓏": # 0x1d4b6 - 0x1d4cf - - t: "script" # (DeepL translation) - - spell: "translate('.', '𝒶𝒷𝒸𝒹𝒺𝒻𝒼𝒽𝒾𝒿𝓀𝓁𝓂𝓃𝓄𝓅𝓆𝓇𝓈𝓉𝓊𝓋𝓌𝓍𝓎𝓏', 'abcdefghijklmnopqrstuvwxyz')" - - "-": # 0xf11a - 0xf133 - - t: "script" # (DeepL translation) - - spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" - - # bold script chars in math alphabetic block and also MathType private use area - - "𝓐-𝓩": # 0x1d4d0 - 0x1d4e9 - - t: "script" # (DeepL translation) - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝓐𝓑𝓒𝓓𝓔𝓕𝓖𝓗𝓘𝓙𝓚𝓛𝓜𝓝𝓞𝓟𝓠𝓡𝓢𝓣𝓤𝓥𝓦𝓧𝓨𝓩', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "-": # 0xf140 - 0xf159 - - t: "script" # (DeepL translation) - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "𝓪-𝔃": # 0x1d4ea - 0x1d503 - - t: "script" # (DeepL translation) - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝓪𝓫𝓬𝓭𝓮𝓯𝓰𝓱𝓲𝓳𝓴𝓵𝓶𝓷𝓸𝓹𝓺𝓻𝓼𝓽𝓾𝓿𝔀𝔁𝔂𝔃', 'abcdefghijklmnopqrstuvwxyz')" - - "-": # 0xf15a - 0xf173 - - t: "script" # (DeepL translation) - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" - - - "-": # 0xf180 - 0xf199 - - spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "": # 0xf19a - - test: - if: "$CapitalLetters_Beep" - then: - - audio: - value: "beep.mp4" - replace: [] - - test: - if: "$CapitalLetters_UseWord" - then_test: - if: "$SpeechOverrides_CapitalLetters = ''" - then_test: - if: "$Impairment = 'Blindness'" - then: [t: "nagybetű"] # (en: 'cap', DeepL translation) - else: [x: "$SpeechOverrides_CapitalLetters"] - - pitch: - value: "$CapitalLetters_Pitch" - replace: [t: "ligatúra ae"] # (en: 'ligature ae', DeepL translation) - - "": # 0xf19b - - test: - if: "$CapitalLetters_Beep" - then: - - audio: - value: "beep.mp4" - replace: [] - - test: - if: "$CapitalLetters_UseWord" - then_test: - if: "$SpeechOverrides_CapitalLetters = ''" - then_test: - if: "$Impairment = 'Blindness'" - then: [t: "nagybetű"] # (en: 'cap', DeepL translation) - else: [x: "$SpeechOverrides_CapitalLetters"] - - pitch: - value: "$CapitalLetters_Pitch" - replace: [t: "éles s"] # (en: 'sharp s', DeepL translation) - - "": # 0xf19c - - test: - if: "$CapitalLetters_Beep" - then: - - audio: - value: "beep.mp4" - replace: [] - - test: - if: "$CapitalLetters_UseWord" - then_test: - if: "$SpeechOverrides_CapitalLetters = ''" - then_test: - if: "$Impairment = 'Blindness'" - then: [t: "nagybetű"] # (en: 'cap', DeepL translation) - else: [x: "$SpeechOverrides_CapitalLetters"] - - pitch: - value: "$CapitalLetters_Pitch" - replace: [t: "o vonallal"] # (en: 'o with stroke', DeepL translation) - - # MathType only has a few of the cap Greek letters in PUA - - "": # 0xf201 - 0xf209 - - T: "dupla leütésű" # (en: 'double struck', DeepL translation) - - spell: "translate('.', '', 'ΔΨΛΠΣΘΓΩΥ')" - - - "-": # 0xf220 - 0xf236 - - T: "dupla leütésű" # (en: 'double struck', DeepL translation) - - spell: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" - - - "": [t: "dupla áthúzott végső szigma"] # 0xf237 (en: 'double struck final sigma', DeepL translation) - - "": [t: "dupla áthúzott rho"] # 0xf250 (en: 'double struck rho', DeepL translation) - - "": [t: "dupla ütött phi"] # 0xf251 (en: 'double struck phi', DeepL translation) - - "𝐀-𝐙": # 0x1d400 - 0x1d419 - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝐀𝐁𝐂𝐃𝐄𝐅𝐆𝐇𝐈𝐉𝐊𝐋𝐌𝐍𝐎𝐏𝐐𝐑𝐒𝐓𝐔𝐕𝐖𝐗𝐘𝐙', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "-": # 0xf260 - 0xf279 - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "𝐚-𝐳": # 0x1d41a - 0x1d433 - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝐚𝐛𝐜𝐝𝐞𝐟𝐠𝐡𝐢𝐣𝐤𝐥𝐦𝐧𝐨𝐩𝐪𝐫𝐬𝐭𝐮𝐯𝐰𝐱𝐲𝐳', 'abcdefghijklmnopqrstuvwxyz')" - - - "-": # 0xf27a - 0xf293 - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" - - - "𝐴-𝑍": # 0x1d434 - 0x1d44d - - spell: "translate('.', '𝐴𝐵𝐶𝐷𝐸𝐹𝐺𝐻𝐼𝐽𝐾𝐿𝑀𝑁𝑂𝑃𝑄𝑅𝑆𝑇𝑈𝑉𝑊𝑋𝑌𝑍', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "-": # 0xf294 - 0xf2ad - - spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "𝑎-𝑧": # 0x1d44e - 0x1d467 - - spell: "translate('.', '𝑎𝑏𝑐𝑑𝑒𝑓𝑔𝑕𝑖𝑗𝑘𝑙𝑚𝑛𝑜𝑝𝑞𝑟𝑠𝑡𝑢𝑣𝑤𝑥𝑦𝑧', 'abcdefghijklmnopqrstuvwxyz')" - - - "-": # 0xf2ae - 0xf2c7 - - spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" - - - "𝑨-𝒁": # 0x1d468 - 0x1d481 - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝑨𝑩𝑪𝑫𝑬𝑭𝑮𝑯𝑰𝑱𝑲𝑳𝑴𝑵𝑶𝑷𝑸𝑹𝑺𝑻𝑼𝑽𝑾𝑿𝒀𝒁', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "-": # 0xf2c8 - 0xf2e1 - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "𝒂-𝒛": # 0x1d482 - 0x1d49b - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝒂𝒃𝒄𝒅𝒆𝒇𝒈𝒉𝒊𝒋𝒌𝒍𝒎𝒏𝒐𝒑𝒒𝒓𝒔𝒕𝒖𝒗𝒘𝒙𝒚𝒛', 'abcdefghijklmnopqrstuvwxyz')" - - - "-": # 0xf2e2 - 0xf2fb - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" - - - "𝖠-𝖹": # 0x1d5a0 - 0x1d5b9 - - spell: "translate('.', '𝖠𝖡𝖢𝖣𝖤𝖥𝖦𝖧𝖨𝖩𝖪𝖫𝖬𝖭𝖮𝖯𝖰𝖱𝖲𝖳𝖴𝖵𝖶𝖷𝖸𝖹', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "-": # 0xf300 - 0xf319 - - spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "𝖺-𝗓": # 0x1d5ba - 0x1d5d3 - - spell: "translate('.', '𝖺𝖻𝖼𝖽𝖾𝖿𝗀𝗁𝗂𝗃𝗄𝗅𝗆𝗇𝗈𝗉𝗊𝗋𝗌𝗍𝗎𝗏𝗐𝗑𝗒𝗓', 'abcdefghijklmnopqrstuvwxyz')" - - - "-": # 0xf31a - 0xf333 - - spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" - - - "𝗔-𝗭": # 0x1d5d4 - 0x1d5ed - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝗔𝗕𝗖𝗗𝗘𝗙𝗚𝗛𝗜𝗝𝗞𝗟𝗠𝗡𝗢𝗣𝗤𝗥𝗦𝗧𝗨𝗩𝗪𝗫𝗬𝗭', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "-": # 0xf334 - 0xf34d - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "𝗮-𝘇": # 0x1d5ee - 0x1d607 - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝗮𝗯𝗰𝗱𝗲𝗳𝗴𝗵𝗶𝗷𝗸𝗹𝗺𝗻𝗼𝗽𝗾𝗿𝘀𝘁𝘂𝘃𝘄𝘅𝘆𝘇', 'abcdefghijklmnopqrstuvwxyz')" - - - "-": # 0xf34e - 0xf367 - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" - - "𝘈-𝘡": # 0x1d608 - 0x1d621 - # - t: "italic" - - spell: "translate('.', '𝘈𝘉𝘊𝘋𝘌𝘍𝘎𝘏𝘐𝘑𝘒𝘓𝘔𝘕𝘖𝘗𝘘𝘙𝘚𝘛𝘜𝘝𝘞𝘟𝘠𝘡', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - "-": # 0xf368 - 0xf381 - # - t: "italic" - - spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "𝘢-𝘻": # 0x1d622 - 0x1d63b - # - t: "italic" - - spell: "translate('.', '𝘢𝘣𝘤𝘥𝘦𝘧𝘨𝘩𝘪𝘫𝘬𝘭𝘮𝘯𝘰𝘱𝘲𝘳𝘴𝘵𝘶𝘷𝘸𝘹𝘺𝘻', 'abcdefghijklmnopqrstuvwxyz')" - - - "-": # 0xf382 - 0xf39b - # - t: "italic" - - spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" - - - "𝘼-𝙕": # 0x1d63c - 0x1d655 - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝘼𝘽𝘾𝘿𝙀𝙁𝙂𝙃𝙄𝙅𝙆𝙇𝙈𝙉𝙊𝙋𝙌𝙍𝙎𝙏𝙐𝙑𝙒𝙓𝙔𝙕', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "-": # 0xf39c - 0xf3b5 - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "𝙖-𝙯": # 0x1d656 - 0x1d66f - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝙖𝙗𝙘𝙙𝙚𝙛𝙜𝙝𝙞𝙟𝙠𝙡𝙢𝙣𝙤𝙥𝙦𝙧𝙨𝙩𝙪𝙫𝙬𝙭𝙮𝙯', 'abcdefghijklmnopqrstuvwxyz')" - - - "-": # 0xf3b6 - 0xf3cf - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" - - - "𝙰-𝚉": # 0x1d670 - 0x1d689 - - spell: "translate('.', '𝙰𝙱𝙲𝙳𝙴𝙵𝙶𝙷𝙸𝙹𝙺𝙻𝙼𝙽𝙾𝙿𝚀𝚁𝚂𝚃𝚄𝚅𝚆𝚇𝚈𝚉', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "-": # 0xf3d0 - 0xf3e9 - - spell: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" - - - "𝚊-𝚣": # 0x1d68a - 0x1d6a3 - - spell: "translate('.', '𝚊𝚋𝚌𝚍𝚎𝚏𝚐𝚑𝚒𝚓𝚔𝚕𝚖𝚗𝚘𝚙𝚚𝚛𝚜𝚝𝚞𝚟𝚠𝚡𝚢𝚣', 'abcdefghijklmnopqrstuvwxyz')" - - - "-": # 0xf3ea - 0xf403 - - spell: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" - - - "": [t: "pont nélküli i"] # 0xf404 (en: 'dotless i', DeepL translation) - - "𝚤": [t: "pont nélküli i"] # 0x1d6a4 (en: 'dotless i', DeepL translation) - - "𝚥": [t: "pont nélküli j"] # 0x1d6a5 (en: 'dotless j', DeepL translation) - - - "𝚨-𝛀": # 0x1d6a8 - 0x1d6c0 - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝚨𝚩𝚪𝚫𝚬𝚭𝚮𝚯𝚰𝚱𝚲𝚳𝚴𝚵𝚶𝚷𝚸𝚹𝚺𝚻𝚼𝚽𝚾𝚿𝛀', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" - - - "-": # 0xf408 - 0xf420 - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" - - - "𝛂-𝛚": # 0x1d6c2 - 0x1d6da - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝛂𝛃𝛄𝛅𝛆𝛇𝛈𝛉𝛊𝛋𝛌𝛍𝛎𝛏𝛐𝛑𝛒𝛓𝛔𝛕𝛖𝛗𝛘𝛙𝛚', 'αβγδεζηθικλμνξοπρςστυφχψω')" - - - "-": # 0xf422 - 0xf43a - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')" - - - "": [t: "merész nahblah"] # 0xf421 (en: 'bold nahblah', DeepL translation) - - "𝛁": [t: "merész nahblah"] # 0x1d6c1 (en: 'bold nahblah', DeepL translation) - - - "𝛛𝛜𝛝𝛞𝛟𝛠𝛡": # 0x1D6DB - 0x1D6E1 - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝛛𝛜𝛝𝛞𝛟𝛠𝛡', '∂εθκφρπ')" - - - "": # 0xF43C - 0xF441 - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', '∂εθκφρπ')" - - - "𝛢-𝛺": # 0x1d6e2 - 0x1d6fa - # - t: "italic" - - spell: "translate('.', '𝛢𝛣𝛤𝛥𝛦𝛧𝛨𝛩𝛪𝛫𝛬𝛭𝛮𝛯𝛰𝛱𝛲𝛳𝛴𝛵𝛶𝛷𝛸𝛹𝛺', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" - - - "-": # 0xf442 - 0xf45a - # - t: "italic" - - spell: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" - - - "𝛼-𝜔": # 0x1d6fc - 0x1d714 - # - t: "italic" - - spell: "translate('.', '𝛼𝛽𝛾𝛿𝜀𝜁𝜂𝜃𝜄𝜅𝜆𝜇𝜈𝜉𝜊𝜋𝜌𝜍𝜎𝜏𝜐𝜑𝜒𝜓𝜔', 'αβγδεζηθικλμνξοπρςστυφχψω')" - - - "-": # 0xf45c - 0xf474 - # - t: "italic" - - spell: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')" - - - "": [t: "dőlt betűs nahblah"] # 0xf45b (en: 'italic nahblah', DeepL translation) - - "𝛻": [t: "dőlt betűs nahblah"] # 0x1d6fb (en: 'italic nahblah', DeepL translation) - - - "𝜕𝜖𝜗𝜘𝜙𝜚𝜛": # 0x1d715 - 0x1d71b - # - t: "italic" - - spell: "translate('.', '𝜕𝜖𝜗𝜘𝜙𝜚𝜛', '∂εθκφρπ')" - - - "": # 0xf475 - 0xf47b - # - t: "italic" - - spell: "translate('.', '', '∂εθκφρπ')" - - - "𝜜-𝜴": # 0x1d71c - 0x1d734 - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝜜𝜝𝜞𝜟𝜠𝜡𝜢𝜣𝜤𝜥𝜦𝜧𝜨𝜩𝜪𝜫𝜬𝜭𝜮𝜯𝜰𝜱𝜲𝜳𝜴', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" - - - "-": # 0xf47c - 0xf494 - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" - - - "𝜶-𝝎": # 0x1d736 - 0x1d74e - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝜶𝜷𝜸𝜹𝜺𝜻𝜼𝜽𝜾𝜿𝝀𝝁𝝂𝝃𝝄𝝅𝝆𝝇𝝈𝝉𝝊𝝋𝝌𝝍𝝎', 'αβγδεζηθικλμνξοπρςστυφχψω')" - - - "-": # 0xf496 - 0xf4ae - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')" - - - "𝝏𝝐𝝑𝝒𝝓𝝔𝝕": # 0x1d74f - 0x1d755 - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝝏𝝐𝝑𝝒𝝓𝝔𝝕', '∂εθκφρπ')" - - - "": # 0xf422 - 0xf43a - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', '∂εθκφρπ')" - - - "𝜵": [t: "vastag dőlt betűs nahblah"] # 0x1d735 (en: 'bold italic nahblah', DeepL translation) - - "": [t: "vastag dőlt betűs nahblah"] # 0xf495 (en: 'bold italic nahblah', DeepL translation) - - - "𝝖-𝝮": # 0x1d756 - 0x1d76e - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝝖𝝗𝝘𝝙𝝚𝝛𝝜𝝝𝝞𝝟𝝠𝝡𝝢𝝣𝝤𝝥𝝦𝝧𝝨𝝩𝝪𝝫𝝬𝝭𝝮', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" - - "-": # 0xf4b6 - 0xf4ce - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" - - - "𝝰-𝞈": # 0x1d770 - 0x1d788 - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝝰𝝱𝝲𝝳𝝴𝝵𝝶𝝷𝝸𝝹𝝺𝝻𝝼𝝽𝝾𝝿𝞀𝞁𝞂𝞃𝞄𝞅𝞆𝞇𝞈', 'αβγδεζηθικλμνξοπρςστυφχψω')" - - - "-": # 0xf4d0 - 0xf4e8 - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')" - - - "𝞉𝞊𝞋𝞌𝞍𝞎𝞏": # 0x1d789 - 0x1d78f - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝞉𝞊𝞋𝞌𝞍𝞎𝞏', '∂εθκφρπ')" - - - "": # 0xf4e9 - 0xf4ef - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', '∂εθκφρπ')" - - - "": [t: "merész nahblah"] # 0xf4cf (en: 'bold nahblah', DeepL translation) - - "𝝯": [t: "merész nahblah"] # 0x1d76f (en: 'bold nahblah', DeepL translation) - - - "𝞐-𝞨": # 0x1d790 - 0x1d7a8 - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝞐𝞑𝞒𝞓𝞔𝞕𝞖𝞗𝞘𝞙𝞚𝞛𝞜𝞝𝞞𝞟𝞠𝞡𝞢𝞣𝞤𝞥𝞦𝞧𝞨', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" - - - "-": # 0xf4f0 - 0xf508 - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" - - - "𝞪-𝟂": # 0x1d7aa - 0x1d7c2 - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝞪𝞫𝞬𝞭𝞮𝞯𝞰𝞱𝞲𝞳𝞴𝞵𝞶𝞷𝞸𝞹𝞺𝞻𝞼𝞽𝞾𝞿𝟀𝟁𝟂', 'αβγδεζηθικλμνξοπρςστυφχψω')" - - - "-": # 0xf50a - 0xf522 - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')" - - - "𝟃𝟄𝟅𝟆𝟇𝟈𝟉": # 0x1d7c3 - 0x1d7c9 - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝟃𝟄𝟅𝟆𝟇𝟈𝟉', '∂εθκφρπ')" - - - "": # 0xf523 - 0xf529 - # - t: "bold italic" - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', '∂εθκφρπ')" - - - "": [t: "merész nahblah"] # 0xf509 (en: 'bold nahblah', DeepL translation) - - "𝞩": [t: "merész nahblah"] # 0x1d7a9 (en: 'bold nahblah', DeepL translation) - - - "-": # 0xf52e - 0xf537 (old MathType) - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '', '0123456789')" - - - "𝟎-𝟗": # 0x1d7ce - 0x1d7d7 - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗', '0123456789')" - - - "𝟬-𝟵": # 0x1D7EC - 0x1D7F5 - - test: - if: "not($IgnoreBold)" - then: [t: "félkövér"] # (en: 'bold', DeepL translation) - - spell: "translate('.', '𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵', '0123456789')" - - - "-": # 0xf556 - 0xf55f (old MathType) - - spell: "translate('.', '', '0123456789')" - - - "𝟢-𝟫": # 0x1d7e2 - 0x1d7eb - - spell: "translate('.', '𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿', '0123456789')" - - - "𝟶-𝟿": # 0x1d7f6 - 0x1d7ff - - spell: "translate('.', '𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿', '0123456789')" - - - - "": [t: "ismeretlen karakter"] # 0xf700 (en: 'unknown character', DeepL translation) - - "": [t: "jobb alsó és bal alsó háromszög"] # 0xf726 (en: 'lower right and lower left triangles', DeepL translation) - - "": [t: "vízszintes ellipszis kiterjesztő"] # 0xf72d (en: 'horizontal ellipsis extender', DeepL translation) - - "": [t: "középvonal vízszintes ellipszis meghosszabbító"] # 0xf72e (en: 'midline horizontal ellipsis extender', DeepL translation) - - "": [t: "radikális hosszabbító"] # 0xf8e5 (en: 'radical extender', DeepL translation) - - "": [t: "függőleges nyíl meghosszabbítása"] # 0xf8e6 (en: 'vertical arrow extender', DeepL translation) - - "": [t: "vízszintes nyíl meghosszabbító"] # 0xf8e7 (en: 'horizontal arrow extender', DeepL translation) - - "": [t: "bejegyzett jel sans serif"] # 0xf8e8 (en: 'registered sign sans serif', DeepL translation) - - "": [t: "copyright jel sans serif"] # 0xf8e9 (en: 'copyright sign sans serif', DeepL translation) - - "": [t: "védjegy jele sans serif"] # 0xf8ea (en: 'trade mark sign sans serif', DeepL translation) - - "": [t: "bal zárójel felső"] # 0xf8eb (en: 'left paren top', DeepL translation) - - "": [t: "bal zárójel hosszabbító"] # 0xf8ec (en: 'left paren extender', DeepL translation) - - "": [t: "bal zárójel alul"] # 0xf8ed (en: 'left paren bottom', DeepL translation) - - "": [t: "bal oldali zárójel tetején"] # 0xf8ee (en: 'left bracket top', DeepL translation) - - "": [t: "bal zárójel hosszabbító"] # 0xf8ef (en: 'left bracket extender', DeepL translation) - - "": [t: "bal konzol alul"] # 0xf8f0 (en: 'left bracket bottom', DeepL translation) - - "": [t: "bal oldali merevítő felső"] # 0xf8f1 (en: 'left brace top', DeepL translation) - - "": [t: "bal oldali zárójel középen"] # 0xf8f2 (en: 'left brace mid', DeepL translation) - - "": [t: "bal szögletes szögletes szöglet alul"] # 0xf8f3 (en: 'left brace bottom', DeepL translation) - - "": [t: "merevítő hosszabbító"] # 0xf8f4 (en: 'brace extender', DeepL translation) - - "": [t: "integrál kiterjesztő"] # 0xf8f5 (en: 'integral extender', DeepL translation) - - "": [t: "jobb oldali zárójel felül"] # 0xf8f6 (en: 'right paren top', DeepL translation) - - "": [t: "jobb oldali zárójel hosszabbító"] # 0xf8f7 (en: 'right paren extender', DeepL translation) - - "": [t: "jobb alsó zárójel"] # 0xf8f8 (en: 'right paren bottom', DeepL translation) - - "": [t: "jobb zárójel fent"] # 0xf8f9 (en: 'right bracket top', DeepL translation) - - "": [t: "jobb oldali zárójel hosszabbító"] # 0xf8fa (en: 'right bracket extender', DeepL translation) - - "": [t: "jobb oldali zárójel alul"] # 0xf8fb (en: 'right bracket bottom', DeepL translation) - - "": [t: "jobb oldali merevítő felül"] # 0xf8fc (en: 'right brace top', DeepL translation) - - "": [t: "jobb oldali zárójel középen"] # 0xf8fd (en: 'right brace mid', DeepL translation) - - "": [t: "jobb oldali merevítő alul"] # 0xf8fe (en: 'right brace bottom', DeepL translation) - - "": [t: "alma logó"] # 0xf8ff (en: 'apple logo', DeepL translation) - - "ff": [t: "ff"] # 0xfb00 (DeepL translation) - - "fi": [t: "fi"] # 0xfb01 (DeepL translation) - - "fl": [t: "fl"] # 0xfb02 (DeepL translation) - - "ffi": [t: "ffi"] # 0xfb03 (DeepL translation) - - "ffl": [t: "ffl"] # 0xfb04 (DeepL translation) - - "ſt": [t: "ft"] # 0xfb05 (DeepL translation) - - "st": [t: "st"] # 0xfb06 (DeepL translation) - - "﬩": [t: "héber betű alternatív plusz"] # 0xfb29 (en: 'hebrew letter alternative plus', DeepL translation) - - "︠": [t: "ligatúra bal fél díszítés"] # 0xfe20 (en: 'ligature left half embellishment', DeepL translation) - - "︡": [t: "ligatúra jobb fél díszítés"] # 0xfe21 (en: 'ligature right half embellishment', DeepL translation) - - "︢": [t: "dupla tilde balra fél díszítés"] # 0xfe22 (en: 'double tilde left half embellishment', DeepL translation) - - "︣": [t: "dupla tilde jobb oldali fél díszítés"] # 0xfe23 (en: 'double tilde right half embellishment', DeepL translation) - - "︤": [t: "makron bal fél díszítés"] # 0xfe24 (en: 'macron left half embellishment', DeepL translation) - - "︥": [t: "makron jobb oldali fél díszítés"] # 0xfe25 (en: 'macron right half embellishment', DeepL translation) - - "︦": [t: "összekötő makron díszítés"] # 0xfe26 (en: 'conjoining macron embellishment', DeepL translation) - - "︵": [t: "zárójel felett"] # 0xfe35 (en: 'over paren', DeepL translation) - - "︶": [t: "zárójel alatt"] # 0xfe36 (en: 'under paren', DeepL translation) - - "︷": [t: "zárójel fölött"] # 0xfe37 (en: 'over brace', DeepL translation) - - "︸": [t: "zárójel alatt"] # 0xfe38 (en: 'under brace', DeepL translation) - - "︿": [t: "szögletes zárójel fölött"] # 0xfe3f (en: 'over angle bracket', DeepL translation) - - "﹀": [t: "szögletes zárójel alatt"] # 0xfe40 (en: 'under angle bracket', DeepL translation) - - "﹡": [t: "kis csillag"] # 0xfe61 (en: 'small asterisk', DeepL translation) - - "﹢": [t: "kis plusz"] # 0xfe62 (en: 'small plus', DeepL translation) - - "﹣": [t: "kis mínusz"] # 0xfe63 (en: 'small minus', DeepL translation) - - "﹤": [t: "kis kevesebb, mint"] # 0xfe64 (en: 'small less than', DeepL translation) - - "﹥": [t: "kicsi nagyobb, mint"] # 0xfe65 (en: 'small greater than', DeepL translation) - - "﹦": [t: "kis egyenlő"] # 0xfe66 (en: 'small equals', DeepL translation) - - "+": [t: "teljes szélességű plusz jel"] # 0xff0b (en: 'fullwidth plus sign', DeepL translation) - - "<": [t: "kisebb, mint"] # 0xff1c (en: 'less than', DeepL translation) - - "=": [t: "egyenlő"] # 0xff1d (en: 'equals', DeepL translation) - - ">": [t: "nagyobb, mint"] # 0xff1e (en: 'greater than', DeepL translation) - - "\": [t: "visszacsúszó"] # 0xff3c (en: 'backslash', DeepL translation) - - "^": [t: "kalap"] # 0xff3e (en: 'hat', DeepL translation) - - "|": # 0xff5c - # note: for ClearSpeak and SimpleSpeak, "|" inside of sets is handled at the mrow level, same for 'sets' - - with: - variables: [DefaultToGiven: "count(preceding-sibling::*)=1 and count(following-sibling::*)=1 and ../../../*[1][.='P']"] # P(A|B) - replace: - - test: - - if: "$SpeechStyle != 'ClearSpeak'" - then_test: - if: "$DefaultToGiven" - then: [t: "adott"] # (en: 'given', DeepL translation) - else: [t: "függőleges vonal"] # (en: 'vertical line', DeepL translation) - - else_if: "not(preceding-sibling::*) or not(following-sibling::*)" - then: [t: "függőleges vonal"] # (en: 'vertical line', DeepL translation) - - else_if: "$ClearSpeak_VerticalLine = 'SuchThat'" - then: [t: "olyan, hogy"] # (en: 'such that', DeepL translation) - - else_if: "$ClearSpeak_VerticalLine = 'Given' or $DefaultToGiven" - then: [t: "adott"] # (en: 'given', DeepL translation) - - else: [t: "osztja"] # (en: 'divides', DeepL translation) - - "~": [t: "tilde"] # 0xff5e (DeepL translation) - - "¬": [t: "nem"] # 0xffe2 (en: 'not', DeepL translation) - - "←": [t: "bal nyíl"] # 0xffe9 (en: 'left arrow', DeepL translation) - - "↑": [t: "felfelé mutató nyíl"] # 0xffea (en: 'up arrow', DeepL translation) - - "→": [t: "jobbra mutató nyíl"] # 0xffeb (en: 'right arrow', DeepL translation) - - "↓": [t: "lefelé mutató nyíl"] # 0xffec (en: 'down arrow', DeepL translation) - - "": [t: "ismeretlen vagy hiányzó tárgy"] # 0xfffc (en: 'unknown or missing object', DeepL translation) - - "�": [t: "ismeretlen vagy hiányzó karakter"] # 0xfffd (en: 'unknown or missing character', DeepL translation) - - - "🣑": [t: "egyensúlyban van"] # 0x1F8D1 (en: 'is in equilibrium with', DeepL translation) - - "🣒": [t: "egyensúlyban van, jobbra torzítva a"] # 0x1F8D2 (en: 'is in equilibrium biased to the right with', DeepL translation) - - "🣓": [t: "egyensúlyi helyzetben van balra ferdített bal oldallal"] # 0x1F8D3 (en: 'is in equilibrium biased to the left with', DeepL translation) - -# MathJax v4 has adopted these PUA values for some partial chem bonds that aren't in Unicode - - "\uE410": [t: "részleges kötés "] # 0xe410 (en: 'partial bond ', DeepL translation) - - "\uE411": [t: "kettős részleges kötés "] # 0xe411 (en: 'double partial bond ', DeepL translation) - - "\uE412": [t: "hármas részleges kötés "] # 0xe412 (en: 'triple partial bond ', DeepL translation) - -# MathJax v4 also adopted these PUA values for some arrows thar are in Unicode -# Hopefully these will be exported properly in future versions of MathJax - - "\uE428": [spell: "'⟵'"] # 0xe428 defer to def of arrow - - "\uE429": [spell: "'⟶'"] # 0xe429 defer to def of arrow - - "\uE42A": [spell: "'⟷'"] # 0xe42a defer to def of arrow - - "\uE408": [spell: "'🣑'"] # 0xe408 defer to def of arrow - - "\uE409": [spell: "'🣒'"] # 0xe409 defer to def of arrow - - "\uE40A": [spell: "'🣓'"] # 0xe40a defer to def of arrow - - "\uE42B": [spell: "'⇄'"] # 0xe42b defer to def of arrow - - "\uE42C": [spell: "'←'"] # 0xe42c defer to def of arrow - - "\uE42D": [spell: "'→'"] # 0xe42d defer to def of arrow - - "\uE42E": [spell: "'⇄'"] # 0xe42e defer to def of arrow +--- + - "¢": [T: "centiméter"] # 0xa2 (en: 'cents', DeepL translation) + + + - "£": [T: "font"] # 0xa3 (en: 'pounds', DeepL translation) + - "¤": [T: "valuta jel"] # 0xa4 (en: 'currency sign', DeepL translation) + - "¥": [T: "jen"] # 0xa5 (en: 'yen', DeepL translation) + - "¦": [T: "szaggatott sáv"] # 0xa6 (en: 'broken bar', DeepL translation) + - "§": [T: "szakasz"] # 0xa7 (en: 'section', DeepL translation) + - "¨": [T: "dupla pont"] # 0xa8 (en: 'double dot', DeepL translation) + - "©": [T: "szerzői jog"] # 0xa9 (DeepL translation) + - "ª": [T: "női rendjelző"] # 0xaa (en: 'feminine ordinal indicator', DeepL translation) + - "«": [T: "balra mutató kettős szögletes idézőjel"] # 0xab (en: 'left-pointing double angle quote mark', DeepL translation) + - "¯": # 0xaf + - test: + if: "ancestor::m:modified-variable and preceding-sibling::*[1][self::m:mi]" + then: [T: "sáv"] # (en: 'bar', DeepL translation) + else: [T: "vonal"] # (en: 'line', DeepL translation) + - "²": [T: "kettő"] # 0xb2 (en: 'two', DeepL translation) + - "³": [T: "három"] # 0xb3 (en: 'three', DeepL translation) + - "µ": [T: "mikro"] # 0xb5 (en: 'micro', DeepL translation) + - "¹": [T: "egy"] # 0xb9 (en: 'one', DeepL translation) + - "º": [T: "hímnemű ordinális jelző"] # 0xb9 (en: 'masculine ordinal indicator', DeepL translation) + - "¡": [T: "fordított felkiáltójel"] # 0xa1 (en: 'inverted exclamation mark', DeepL translation) + - "¶": [T: "bekezdésjelző"] # 0xb6 (en: 'paragraph mark', DeepL translation) + - "¿": [T: "fordított kérdőjel"] # 0xbf (en: 'inverted question mark', DeepL translation) + + - "ʰ": [T: "módosító kis h"] # 0x2b0 (en: 'modifier small h', DeepL translation) + - "ʱ": [T: "módosító kis h horoggal"] # 0x2b1 (en: 'modifier small h with hook', DeepL translation) + - "ʲ": [T: "módosító kis j"] # 0x2b2 (en: 'modifier small j', DeepL translation) + - "ʳ": [T: "módosító kis r"] # 0x2b3 (en: 'modifier small r', DeepL translation) + - "ʴ": [T: "módosító kis fordított r"] # 0x2b4 (en: 'modifier small turned r', DeepL translation) + - "ʵ": [T: "módosító kis fordított r horoggal"] # 0x2b5 (en: 'modifier small turned r with hook', DeepL translation) + - "ʶ": # 0x2b6 + - T: "módosító kis fordított a" # (en: 'modifier small inverted', DeepL translation) + - SPELL: "translate('R', 'R', 'R')" + + - "ʷ": [T: "módosító kis w"] # 0x2b7 (en: 'modifier small w', DeepL translation) + - "ʸ": [T: "módosító kis y"] # 0x2b8 (en: 'modifier small y', DeepL translation) + - "ʹ": [T: "módosító prím"] # 0x2b9 (DeepL translation) + - "ʺ": [T: "módosító kettős prím"] # 0x2ba (en: 'modifier double prime', DeepL translation) + - "ʻ": [T: "módosító fordított vessző"] # 0x2bb (en: 'modifier turned comma', DeepL translation) + - "ʼ": [T: "módosító aposztróf"] # 0x2bc (en: 'modifier apostrophe', DeepL translation) + - "ʽ": [T: "módosító fordított vessző"] # 0x2bd (en: 'modifier reversed comma', DeepL translation) + - "ʾ": [T: "módosító jobb fél gyűrű"] # 0x2be (en: 'modifier right half ring', DeepL translation) + - "ʿ": [T: "módosító bal fél gyűrű"] # 0x2bf (en: 'modifier left half ring', DeepL translation) + - "ˀ": [T: "módosító glottal stop"] # 0x2c0 (en: 'modifier glottal stop', DeepL translation) + - "ˁ": [T: "módosító fordított glottal stop"] # 0x2c1 (en: 'modifier reversed glottal stop', DeepL translation) + - "˂": [T: "módosító bal oldali nyílhegy"] # 0x2c2 (en: 'modifier left arrowhead', DeepL translation) + - "˃": [T: "módosító jobb oldali nyílhegy"] # 0x2c3 (en: 'modifier right arrowhead', DeepL translation) + - "˄": [T: "konjunkció"] # 0x2c4 (en: 'modifier up arrowhead', DeepL translation) + - "˅": [T: "diszjunkció"] # 0x2c5 (en: 'modifier down arrowhead', DeepL translation) + - "ˆ": [T: "kalap karakter mint repülő ékezet"] # 0x2c6 (en: 'modifier circumflex accent', DeepL translation) + - "ˇ": [T: "hacsek karakter mint repülő ékezet"] # 0x2c7 (en: 'check', DeepL translation) + - "ˈ": [T: "módosító függőleges vonal"] # 0x2c8 (en: 'modifier vertical line', DeepL translation) + - "ˉ": [T: "módosító makron"] # 0x2c9 (en: 'modifier macron', DeepL translation) + - "ˊ": [T: "vessző mint éles ékezet"] # 0x2ca (en: 'modifier acute accent', DeepL translation) + - "ˋ": [T: "módosító súlyos ékezet"] # 0x2cb (en: 'modifier grave accent', DeepL translation) + - "ˌ": [T: "módosító alacsony függőleges vonal"] # 0x2cc (en: 'modifier low vertical line', DeepL translation) + - "ˍ": [T: "módosító alacsony makron"] # 0x2cd (en: 'modifier low macron', DeepL translation) + - "ˎ": [T: "módosító alacsony súlyos ékezet"] # 0x2ce (en: 'modifier low grave accent', DeepL translation) + - "ˏ": [T: "módosító alacsony hegyes ékezet"] # 0x2cf (en: 'modifier low acute accent', DeepL translation) + - "ː": [T: "módosító háromszögű kettőspont"] # 0x2d0 (en: 'modifier triangular colon', DeepL translation) + - "ˑ": [T: "módosító fél háromszög alakú kettőspont"] # 0x2d1 (en: 'modifier half triangular colon', DeepL translation) + - "˒": [T: "módosító középen jobb oldali félgyűrűvel"] # 0x2d2 (en: 'modifier centered right half ring', DeepL translation) + - "˓": [T: "módosító középen bal oldali félgyűrű"] # 0x2d3 (en: 'modifier centered left half ring', DeepL translation) + - "˔": [T: "módosító fel tadck"] # 0x2d4 (en: 'modifier up tadck', DeepL translation) + - "˕": [T: "módosító lefelé tack"] # 0x2d5 (en: 'modifier down tack', DeepL translation) + - "˖": [T: "módosító plusz jel"] # 0x2d6 (en: 'modifier plus sign', DeepL translation) + - "˗": [T: "módosító mínusz jel"] # 0x2d7 (en: 'modifier minus sign', DeepL translation) + - "˘": [T: "breve"] # 0x2d8 (DeepL translation) + - "˙": [T: "pont"] # 0x2d9 (en: 'dot', DeepL translation) + - "˚": [T: "gyűrű felett"] # 0x2da (en: 'ring above', DeepL translation) + - "˛": [T: "ogonek"] # 0x2db (DeepL translation) + - "˜": [T: "kis tilde"] # 0x2dc (en: 'small tilde', DeepL translation) + - "˝": [T: "kettős hegyes ékezet"] # 0x2dd (en: 'double acute accent', DeepL translation) + - "˞": [T: "módosító rótikus horog"] # 0x2de (en: 'modifier rhotic hook', DeepL translation) + - "˟": [T: "módosító kereszt ékezet"] # 0x2df (en: 'modifier cross accent', DeepL translation) + - "ˠ": [T: "módosító kis gamma"] # 0x2e0 (en: 'modifier small gamma', DeepL translation) + - "ˡ": [T: "módosító kis l"] # 0x2e1 (en: 'modifier small l', DeepL translation) + - "ˢ": [T: "módosító kis es"] # 0x2e2 (en: 'modifier small s', DeepL translation) + - "ˣ": [T: "módosító kis x"] # 0x2e3 (en: 'modifier small x', DeepL translation) + - "ˤ": [T: "módosító kis fordított glottal stop"] # 0x2e4 (en: 'modifier small reversed glottal stop', DeepL translation) + - "˥": [T: "módosító extra magas hangsáv"] # 0x2e5 (en: 'modifier extra-high tone bar', DeepL translation) + - "˦": [T: "módosító magas hangsáv"] # 0x2e6 (en: 'modifier high tone bar', DeepL translation) + - "˧": [T: "módosító középtónusú sáv"] # 0x2e7 (en: 'modifier mid tone bar', DeepL translation) + - "˨": [T: "módosító alacsony hangsáv"] # 0x2e8 (en: 'modifier low tone bar', DeepL translation) + - "˩": [T: "módosító extra alacsony tónusú sáv"] # 0x2e9 (en: 'modifier extra-low tone bar', DeepL translation) + - "˪": [T: "módosító yin távozó hangjelzés"] # 0x2ea (en: 'modifier yin departing tone mark', DeepL translation) + - "˫": [T: "módosító jang távozó hangjelzés"] # 0x2eb (en: 'modifier yang departing tone mark', DeepL translation) + - "ˬ": [T: "módosító hangképzés"] # 0x2ec (en: 'modifier voicing', DeepL translation) + - "˭": [T: "nem aspirált módosító"] # 0x2ed (en: 'modifier unaspirated', DeepL translation) + - "ˮ": [T: "módosító kettős aposztróf"] # 0x2ee (en: 'modifier double apostrophe', DeepL translation) + - "˯": [T: "módosító alacsonyan lefelé mutató nyílhegy"] # 0x2ef (en: 'modifier low down arrowhead', DeepL translation) + - "˰": [T: "módosító alacsonyan felfelé mutató nyílhegy"] # 0x2f0 (en: 'modifier low up arrowhead', DeepL translation) + - "˱": [T: "módosító bal alsó nyílhegy"] # 0x2f1 (en: 'modifier low left arrowhead', DeepL translation) + - "˲": [T: "módosító alsó jobbra mutató nyílhegy"] # 0x2f2 (en: 'modifier low right arrowhead', DeepL translation) + - "˳": [T: "módosító alacsony gyűrű"] # 0x2f3 (en: 'modifier low ring', DeepL translation) + - "˴": [T: "módosító középső sír ékezet"] # 0x2f4 (en: 'modifier middle grave accent', DeepL translation) + - "˵": [T: "módosító középső kettős sír ékezet"] # 0x2f5 (en: 'modifier middle double grave accent', DeepL translation) + - "˶": [T: "módosító középső kettős hegyes ékezet"] # 0x2f6 (en: 'modifier middle double acute accent', DeepL translation) + - "˷": [T: "módosító alacsony tilde"] # 0x2f7 (en: 'modifier low tilde', DeepL translation) + - "˸": [T: "módosító emelt kettőspont"] # 0x2f8 (en: 'modifier raised colon', DeepL translation) + - "˹": [T: "módosító magas hangjelzés kezdete"] # 0x2f9 (en: 'modifier begin high tone', DeepL translation) + - "˺": [T: "módosító magas hangjelzés vége"] # 0x2fa (en: 'modifier end high tone', DeepL translation) + - "˻": [T: "módosító alacsony hangjelzés kezdete"] # 0x2fb (en: 'modifier begin low tone', DeepL translation) + - "˼": [T: "módosító alacsony hangjelzés vége"] # 0x2fc (en: 'modifier end low tone', DeepL translation) + - "˽": [T: "módosító polc"] # 0x2fd (en: 'modifier shelf', DeepL translation) + - "˾": [T: "módosító nyitott polc"] # 0x2fe (en: 'modifier open shelf', DeepL translation) + - "˿": [T: "módosító bal alsó bal nyíl"] # 0x2ff (en: 'modifier low left arrow', DeepL translation) + - "̈": [T: "diaerézis díszítés"] # 0x308 (en: 'diaeresis embellishment', DeepL translation) + - "̉": [T: "horog a díszítés felett"] # 0x309 (en: 'hook above embellishment', DeepL translation) + - "̊": [T: "gyűrű a díszítés felett"] # 0x30a (en: 'ring above embellishment', DeepL translation) + - "̋": [T: "dupla hegyes ékezetű ékezet díszítés"] # 0x30b (en: 'double acute accent embellishment', DeepL translation) + - "̌": [T: "ellenőrzés"] # 0x30c (en: 'check', DeepL translation) + - "̍": [T: "függőleges vonal a díszítés felett"] # 0x30d (en: 'vertical line above embellishment', DeepL translation) + - "̎": [T: "dupla függőleges vonal a díszítés felett"] # 0x30e (en: 'double vertical line above embellishment', DeepL translation) + - "̏": [T: "dupla sír ékezet díszítés"] # 0x30f (en: 'double grave accent embellishment', DeepL translation) + - "̐": [T: "candrabindu díszítés"] # 0x310 (en: 'candrabindu embellishment', DeepL translation) + - "̑": [T: "fordított breviális díszítés"] # 0x311 (en: 'inverted breve embellishment', DeepL translation) + - "̒": [T: "fordított vessző felett díszítés"] # 0x312 (en: 'turned comma above embellishment', DeepL translation) + - "̓": [T: "vessző a díszítés felett"] # 0x313 (en: 'comma above embellishment', DeepL translation) + - "̔": [T: "fordított vessző a díszítés felett"] # 0x314 (en: 'reversed comma above embellishment', DeepL translation) + - "̕": [T: "vessző a jobb oldali díszítés felett"] # 0x315 (en: 'comma above right embellishment', DeepL translation) + - "̖": [T: "súlyos ékezet alatti díszítés"] # 0x316 (en: 'grave accent below embellishment', DeepL translation) + - "̗": [T: "éles ékezet alatt díszítés"] # 0x317 (en: 'acute accent below embellishment', DeepL translation) + - "̘": [T: "bal szögletes zárójel alatti díszítés"] # 0x318 (en: 'left tack below embellishment', DeepL translation) + - "̙": [T: "jobb szögletes zárójel alatti díszítés"] # 0x319 (en: 'right tack below embellishment', DeepL translation) + - "̚": [T: "bal szög a díszítés felett"] # 0x31a (en: 'left angle above embellishment', DeepL translation) + - "̛": [T: "szarv díszítés"] # 0x31b (en: 'horn embellishment', DeepL translation) + - "̜": [T: "bal félgyűrű alatti díszítés"] # 0x31c (en: 'left half ring below embellishment', DeepL translation) + - "̝": [T: "díszítés alatti felvarrás"] # 0x31d (en: 'up tack below embellishment', DeepL translation) + - "̞": [T: "lefelé forduló díszítés alatt"] # 0x31e (en: 'down tack below embellishment', DeepL translation) + - "̟": [T: "pluszjel a díszítés alatt"] # 0x31f (en: 'plus sign below embellishment', DeepL translation) + - "̠": [T: "mínusz jel alatti díszítés"] # 0x320 (en: 'minus sign below embellishment', DeepL translation) + - "̡": [T: "palatalizált horog alatti díszítés"] # 0x321 (en: 'palatalized hook below embellishment', DeepL translation) + - "̢": [T: "retroflex horog alatti díszítés"] # 0x322 (en: 'retroflex hook below embellishment', DeepL translation) + - "̣": [T: "pont a díszítés alatt"] # 0x323 (en: 'dot below embellishment', DeepL translation) + - "̤": [T: "diaerézis a díszítés alatt"] # 0x324 (en: 'diaeresis below embellishment', DeepL translation) + - "̥": [T: "gyűrű a díszítés alatt"] # 0x325 (en: 'ring below embellishment', DeepL translation) + - "̦": [T: "vessző a díszítés alatt"] # 0x326 (en: 'comma below embellishment', DeepL translation) + - "̧": [T: "cedilla díszítés"] # 0x327 (en: 'cedilla embellishment', DeepL translation) + - "̨": [T: "ogonek díszítés"] # 0x328 (en: 'ogonek embellishment', DeepL translation) + - "̩": [T: "függőleges vonal a díszítés alatt"] # 0x329 (en: 'vertical line below embellishment', DeepL translation) + - "̪": [T: "híd alatti díszítés"] # 0x32a (en: 'bridge below embellishment', DeepL translation) + - "̫": [T: "fordított kettős ív a díszítés alatt"] # 0x32b (en: 'inverted double arch below embellishment', DeepL translation) + - "̬": [T: "caron alatti díszítés"] # 0x32c (en: 'caron below embellishment', DeepL translation) + - "̭": [T: "körkörös ékezet a díszítés alatt"] # 0x32d (en: 'circumflex accent below embellishment', DeepL translation) + - "̮": [T: "breve alatti díszítés"] # 0x32e (en: 'breve below embellishment', DeepL translation) + - "̯": [T: "fordított breve alatti díszítés"] # 0x32f (en: 'inverted breve below embellishment', DeepL translation) + - "̰": [T: "tilde a díszítés alatt"] # 0x330 (en: 'tilde below embellishment', DeepL translation) + - "̱": [T: "makron alatti díszítés"] # 0x331 (en: 'macron below embellishment', DeepL translation) + - "̲": [T: "alacsony vonalú díszítés"] # 0x332 (en: 'low line embellishment', DeepL translation) + - "̳": [T: "kettős alacsony vonalú díszítés"] # 0x333 (en: 'double low line embellishment', DeepL translation) + - "̴": [T: "tilde a díszítés felett"] # 0x334 (en: 'tilde overlay embellishment', DeepL translation) + - "̵": [T: "rövid vonallal felrakott díszítés"] # 0x335 (en: 'short stroke overlay embellishment', DeepL translation) + - "̶": [T: "hosszú vonallal felrakott díszítés"] # 0x336 (en: 'long stroke overlay embellishment', DeepL translation) + - "̷": [T: "rövid solidus feletti díszítés"] # 0x337 (en: 'short solidus overlay embellishment', DeepL translation) + - "̸": [T: "hosszú solidus feletti díszítés"] # 0x338 (en: 'long solidus overlay embellishment', DeepL translation) + - "̹": [T: "jobb oldali félgyűrű alatti díszítés"] # 0x339 (en: 'right half ring below embellishment', DeepL translation) + - "̺": [T: "fordított híd alatti díszítés"] # 0x33a (en: 'inverted bridge below embellishment', DeepL translation) + - "̻": [T: "négyzet alatti díszítés"] # 0x33b (en: 'square below embellishment', DeepL translation) + - "̼": [T: "sirály alatta díszítés"] # 0x33c (en: 'seagull below embellishment', DeepL translation) + - "̽": [T: "x feletti díszítés"] # 0x33d (en: 'x above embellishment', DeepL translation) + - "̾": [T: "függőleges tilde díszítés"] # 0x33e (en: 'vertical tilde embellishment', DeepL translation) + - "̿": [T: "dupla felülvonalas díszítés"] # 0x33f (en: 'double overline embellishment', DeepL translation) + - "̀": [T: "súlyos hangjelzés díszítés"] # 0x340 (en: 'grave tone mark embellishment', DeepL translation) + - "́": [T: "hegyes tónusú díszítés"] # 0x341 (en: 'acute tone mark embellishment', DeepL translation) + - "͆": [T: "híd felett"] # 0x346 (en: 'bridge above', DeepL translation) + + - "ΪΫϏ": # 0x3aa, 0x3ab, 0x3cf + - test: + if: "$CapitalLetters_Beep" + then: + - audio: + value: "beep.mp4" + replace: [] + - test: + if: "$CapitalLetters_UseWord" + then_test: + if: "$SpeechOverrides_CapitalLetters = ''" + then_test: + if: "$Impairment = 'Blindness'" + then: [T: "nagy"] # (en: 'cap', DeepL translation) + else: [x: "$SpeechOverrides_CapitalLetters"] + - pitch: + value: "$CapitalLetters_Pitch" + replace: [SPELL: "translate('.', 'ΪΫϏ', 'ιυϗ')"] + - T: "dialitikával" # (en: 'with dialytika', DeepL translation) + - "ϊ": [T: "jota dialitikával"] # 0x3ca (en: 'iota with dialytika', DeepL translation) + - "ϋ": [T: "upsilon dialitikával"] # 0x3cb (en: 'upsilon with dialytika', DeepL translation) + - "ό": [T: "omikron tonoszokkal"] # 0x3cc (en: 'omicron with tonos', DeepL translation) + - "ύ": [T: "upsilon tonoszokkal"] # 0x3cd (en: 'upsilon with tonos', DeepL translation) + - "ώ": [T: "omega tonoszokkal"] # 0x3ce (en: 'omega with tonos', DeepL translation) + - "ϐ": [T: "béta"] # 0x3d0 (en: 'beta', DeepL translation) + - "ϑ": [T: "théta"] # 0x3d1 (en: 'theta', DeepL translation) + - "ϒ": [T: "upsilon horoggal"] # 0x3d2 (en: 'upsilon with hook', DeepL translation) + - "ϓ": [T: "upsilon hegyes és kampós horoggal"] # 0x3d3 (en: 'upsilon with acute and hook', DeepL translation) + - "ϔ": [T: "upsilon diaerézissel és horoggal"] # 0x3d4 (en: 'upsilon with diaeresis and hook', DeepL translation) + - "ϗ": [T: "kai"] # 0x3d7 (DeepL translation) + - "Ϙ": [T: "nagy archaikus koppa"] # 0x3d8 (en: 'cap archaic koppa', DeepL translation) + - "ϙ": [T: "archaikus koppa"] # 0x3d9 (en: 'archaic koppa', DeepL translation) + - "А-Я": # 0x410 - 0x42f + - test: + if: "$CapitalLetters_Beep" + then: + - audio: + value: "beep.mp4" + replace: [] + - test: + if: "$CapitalLetters_UseWord" + then_test: + if: "$SpeechOverrides_CapitalLetters = ''" + then_test: + if: "$Impairment = 'Blindness'" + then: [T: "nagy"] # (en: 'cap', DeepL translation) + else: [x: "$SpeechOverrides_CapitalLetters"] + - pitch: + value: "$CapitalLetters_Pitch" + replace: [SPELL: "translate('.', 'АБВГДЕЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ', 'абвгдежзийклмнопрстуфхцчшщъыьэюя')"] + - "а": [T: "а"] # 0x430 (en: 'a', DeepL translation) + - "б": [T: "ciril be"] # 0x431 (DeepL translation) + - "в": [T: "ciril ve"] # 0x432 (DeepL translation) + - "г": [T: "ciril ge"] # 0x433 (DeepL translation) + - "д": [T: "ciril de"] # 0x434 (DeepL translation) + - "е": [T: "ciril je"] # 0x435 (en: 'ie', DeepL translation) + - "ж": [T: "ciril zse"] # 0x436 (DeepL translation) + - "з": [T: "ciril ze"] # 0x437 (DeepL translation) + - "и": [T: "и"] # 0x438 (en: 'i', DeepL translation) + - "й": [T: "rövid i"] # 0x439 (en: 'short i', DeepL translation) + - "к": [T: "ciril k"] # 0x43a (DeepL translation) + - "л": [T: "el"] # 0x43b (DeepL translation) + - "м": [T: "ciril em"] # 0x43c (DeepL translation) + - "н": [T: "ciril en"] # 0x43d (DeepL translation) + - "о": [T: "о"] # 0x43e (en: 'o', DeepL translation) + - "п": [T: "pe"] # 0x43f (DeepL translation) + - "р": [T: "er"] # 0x440 (DeepL translation) + - "с": [T: "ciril esz"] # 0x441 (DeepL translation) + - "т": [T: "ciril te"] # 0x442 (DeepL translation) + - "у": [T: "у"] # 0x443 (en: 'u', DeepL translation) + - "ф": [T: "ciril ef"] # 0x444 (DeepL translation) + - "х": [T: "ciril ha"] # 0x445 (DeepL translation) + - "ц": [T: "ciril tse"] # 0x446 (DeepL translation) + - "ч": [T: "ciril che"] # 0x447 (DeepL translation) + - "ш": [T: "ciril sha"] # 0x448 (DeepL translation) + - "щ": [T: "ciril shcha"] # 0x449 (DeepL translation) + - "ъ": [T: "kemény jel"] # 0x44a (en: 'hard sign', DeepL translation) + - "ы": [T: "ciril yeru"] # 0x44b (DeepL translation) + - "ь": [T: "lágy jel"] # 0x44c (en: 'soft sign', DeepL translation) + - "э": [T: "э"] # 0x44d (en: 'e', DeepL translation) + - "ю": [T: "ciril yu"] # 0x44e (DeepL translation) + - "я": [T: "ciril ya"] # 0x44f (DeepL translation) + - "؆": [T: "arab-indikus köbgyök"] # 0x606 (en: 'Arabic-Indic cube root', DeepL translation) + - "؇": [T: "arab-indiai negyedik gyök"] # 0x607 (en: 'Arabic-Indic fourth root', DeepL translation) + - "؈": [T: "arab sugár"] # 0x608 (en: 'Arabic ray', DeepL translation) + - "‐": [T: "kötőjel"] # 0x2010 (en: 'hyphen', DeepL translation) + - "‑": [T: "kötőjel"] # 0x2011 (en: 'hyphen', DeepL translation) + - "‒": [T: "számjeles kötőjel"] # 0x2012 (en: 'figure dash', DeepL translation) + - "–": [T: "en kötőjel"] # 0x2013 (en: 'en dash', DeepL translation) + - "—": [T: "em kötőjel"] # 0x2014 (en: 'em dash', DeepL translation) + - "―": [T: "vízszintes sáv"] # 0x2015 (en: 'horizontal bar', DeepL translation) + - "‖": [T: "dupla függőleges vonal"] # 0x2016 (en: 'double vertical line', DeepL translation) + - "†": [T: "tőr"] # 0x2020 (en: 'dagger', DeepL translation) + - "‡": [T: "dupla tőr"] # 0x2021 (en: 'double dagger', DeepL translation) + + - " - ": [T: "‡"] # 0x2000 - 0x2007 (en: ' ', DeepL translation) + + - "•": # 0x2022 + - test: + if: "@data-chem-formula-op" + then: [T: "pont"] # (en: 'dot', DeepL translation) + else: [T: "golyó"] # (en: 'bullet', DeepL translation) + + - "‰": [T: "ezrelék"] # 0x2030 (DeepL translation) + - "‱": [T: "per tízezer"] # 0x2031 (en: 'per ten thousand', DeepL translation) + - "′": [T: "prím"] # 0x2032 (en: 'prime', DeepL translation) + - "″": [T: "dupla prím"] # 0x2033 (en: 'double prime', DeepL translation) + - "‴": [T: "hármas ikerprím"] # 0x2034 (en: 'triple prime', DeepL translation) + - "‵": [T: "fordított prím"] # 0x2035 (en: 'reversed prime', DeepL translation) + - "‶": [T: "fordított dupla prím"] # 0x2036 (en: 'reversed double prime', DeepL translation) + - "‷": [T: "fordított hármas prím"] # 0x2037 (en: 'reversed triple prime', DeepL translation) + - "‸": [T: "a(z)"] # 0x2038 (en: 'to the', DeepL translation) + - "‹": [T: "egyetlen balra mutató szögletes idézőjel"] # 0x2039 (en: 'single left pointing angle quote mark', DeepL translation) + - "›": [T: "egyszerű jobbra mutató szögletes idézőjel"] # 0x203a (en: 'single right pointing angle quote mark', DeepL translation) + - "‼": # 0x203c + - test: + if: "ancestor-or-self::*[contains(@data-intent-property, ':literal:')]" + then: [T: "dupla felkiáltójel"] # 0x203c (en: 'double exclamation point', DeepL translation) + else: [T: "dupla faktoriális"] # 0x203c (en: 'double factorial', DeepL translation) + - "⁄": # 0x2044 + - test: + if: "ancestor-or-self::*[contains(@data-intent-property, ':literal:')]" + then: [T: "nagy átlós vonal"] # 0x203c (en: 'large slash', DeepL translation) + else: [T: "osztva"] # 0x203c (en: 'divided by', DeepL translation) + - "⁅": [T: "bal szögletes zárójel tollal"] # 0x2045 (en: 'left square bracket with quill', DeepL translation) + - "⁆": [T: "jobb szögletes zárójel tollal"] # 0x2046 (en: 'right square bracket with quill', DeepL translation) + - "※": [T: "referenciajel"] # 0x203b (en: 'reference mark', DeepL translation) + - "‿": [T: "alá kötés"] # 0x203F (en: 'under tie', DeepL translation) + - "⁀": [T: "nyakkendő"] # 0x2040 (en: 'tie', DeepL translation) + - "⁎": [T: "alacsony csillag"] # 0x204e (en: 'low asterisk', DeepL translation) + - "⁏": [T: "fordított pontosvessző"] # 0x204f (en: 'reversed semicolon', DeepL translation) + - "⁐": [T: "közelről"] # 0x2050 (en: 'close up', DeepL translation) + - "⁑": [T: "két függőleges csillag"] # 0x2051 (en: 'two vertical asterisks', DeepL translation) + - "⁒": [T: "kereskedelmi mínusz jel"] # 0x2052 (en: 'commercial minus sign', DeepL translation) + - "⁗": [T: "négyszeres prím"] # 0x2057 (en: 'quadruple prime', DeepL translation) + - "⁠": [T: ""] # 0x2060 + - "⁰": [T: "a nulladik hatványon"] # 0x2070 (en: 'to the zeroth power', DeepL translation) + - "ⁱ": [T: "i-edik hatványig"] # 0x2071 (en: 'to the i-th power', DeepL translation) + - "⁴": [T: "a negyedik hatványon"] # 0x2074 (en: 'to the fourth power', DeepL translation) + - "⁵": [T: "az ötödik hatványon"] # 0x2075 (en: 'to the fifth power', DeepL translation) + - "⁶": [T: "a hatodik hatványon"] # 0x2076 (en: 'to the sixth power', DeepL translation) + - "⁷": [T: "a hetedik hatványon"] # 0x2077 (en: 'to the seventh power', DeepL translation) + - "⁸": [T: "a nyolcadik hatványon"] # 0x2078 (en: 'to the eighth power', DeepL translation) + - "⁹": [T: "a kilencedik hatványon"] # 0x2079 (en: 'to the ninth power', DeepL translation) + - "⁺": [T: "felső index plusz"] # 0x207a (en: 'superscript plus sign', DeepL translation) + - "⁻": [T: "felső index mínusz"] # 0x207b (en: 'superscript minus', DeepL translation) + - "⁼": [T: "felső index egyenlő"] # 0x207c (en: 'superscript equals sign', DeepL translation) + - "⁽": [T: "felső index bal zárójel"] # 0x207d (en: 'superscript left parenthesis', DeepL translation) + - "⁾": [T: "felső index jobb zárójel"] # 0x207e (en: 'superscript right parenthesis', DeepL translation) + - "ⁿ": [T: "az n-edik hatványon"] # 0x207f (en: 'to the ennth power', DeepL translation) + - "₀": [T: "alsó index nulla"] # 0x2080 (en: 'sub zero', DeepL translation) + - "₁": [T: "alsó index egy"] # 0x2081 (en: 'sub one', DeepL translation) + - "₂": [T: "alsó index kettő"] # 0x2082 (en: 'sub two', DeepL translation) + - "₃": [T: "alsó index három"] # 0x2083 (en: 'sub three', DeepL translation) + - "₄": [T: "alsó index négy"] # 0x2084 (en: 'sub four', DeepL translation) + - "₅": [T: "alsó index öt"] # 0x2085 (DeepL translation) + - "₆": [T: "alsó index hat"] # 0x2086 (en: 'sub six', DeepL translation) + - "₇": [T: "alsó index hét"] # 0x2087 (DeepL translation) + - "₈": [T: "alsó index nyolc"] # 0x2088 (en: 'sub eight', DeepL translation) + - "₉": [T: "alsó index kilenc"] # 0x2089 (DeepL translation) + - "₊": [T: "alsó index plusz"] # 0x208a (en: 'subscript plus sign', DeepL translation) + - "₋": [T: "alsó index mínusz"] # 0x208b (en: 'subscript minus sign', DeepL translation) + - "₌": [T: "alsó index egyenlő"] # 0x208c (en: 'subscript equals sign', DeepL translation) + - "₍": [T: "alsó index balzárójel"] # 0x208d (en: 'subscript left parenthesis', DeepL translation) + - "₎": [T: "alsó index jobbzárójel"] # 0x208e (en: 'subscript right parenthesis', DeepL translation) + - "ₐ": [T: "alsó index a"] # 0x2090 (en: 'sub A', DeepL translation) + - "ₑ": [T: "alsó index e"] # 0x2091 (en: 'sub E', DeepL translation) + - "ₒ": [T: "alsó index o"] # 0x2092 (en: 'sub O', DeepL translation) + - "ₓ": [T: "alsó index x"] # 0x2093 (en: 'sub X', DeepL translation) + - "ₕ": [T: "alsó index h"] # 0x2095 (en: 'sub H', DeepL translation) + - "ₖ": [T: "alsó index k"] # 0x2096 (en: 'sub K', DeepL translation) + - "ₗ": [T: "alsó index l"] # 0x2097 (en: 'sub L', DeepL translation) + - "ₘ": [T: "alsó index m"] # 0x2098 (en: 'sub M', DeepL translation) + - "ₙ": [T: "alsó index n"] # 0x2099 (en: 'sub N', DeepL translation) + - "ₚ": [T: "alsó index p"] # 0x209a (en: 'sub P', DeepL translation) + - "ₛ": [T: "alsó index s"] # 0x209b (en: 'sub S', DeepL translation) + - "ₜ": [T: "alsó index t"] # 0x209c (en: 'sub T', DeepL translation) + - "₠": [T: "európai áramegységek"] # 0x20a0 (en: 'european currenty units', DeepL translation) + - "₡": [T: "kettőspontok"] # 0x20a1 (en: 'colons', DeepL translation) + - "₢": [T: "cruzeiro"] # 0x20a2 (DeepL translation) + - "₣": [T: "frank"] # 0x20a3 (en: 'franc', DeepL translation) + - "₤": [T: "líra"] # 0x20a4 (en: 'lira', DeepL translation) + - "₥": [T: "malmok"] # 0x20a5 (en: 'mills', DeepL translation) + - "₦": [T: "naira"] # 0x20a6 (DeepL translation) + - "₧": [T: "peseta"] # 0x20a7 (DeepL translation) + - "₨": [T: "rúpiák"] # 0x20a8 (en: 'rupees', DeepL translation) + - "₩": [T: "won"] # 0x20a9 (en: 'won', DeepL translation) + - "₪": [T: "új sheqel"] # 0x20aa (en: 'new sheqels', DeepL translation) + - "₫": [T: "dong"] # 0x20ab (DeepL translation) + - "€": [T: "euró"] # 0x20ac (en: 'euros', DeepL translation) + - "₭": [T: "kip"] # 0x20ad (DeepL translation) + - "₮": [T: "tugrik"] # 0x20ae (DeepL translation) + - "₯": [T: "drachma"] # 0x20af (DeepL translation) + - "₰": [T: "német fillér"] # 0x20b0 (en: 'german pennies', DeepL translation) + - "₱": [T: "peso"] # 0x20b1 (en: 'pesos', DeepL translation) + - "₲": [T: "guaranis"] # 0x20b2 (DeepL translation) + - "₳": [T: "ausztrálok"] # 0x20b3 (en: 'australs', DeepL translation) + - "₴": [T: "hrivnyák"] # 0x20b4 (en: 'hryvnias', DeepL translation) + - "₵": [T: "cedi"] # 0x20b5 (en: 'cedis', DeepL translation) + - "₶": [T: "torinói livre"] # 0x20b6 (DeepL translation) + - "₷": [T: "spesmilos"] # 0x20b7 (DeepL translation) + - "₸": [T: "tenges"] # 0x20b8 (DeepL translation) + - "₹": [T: "indiai rúpia"] # 0x20b9 (en: 'indian rupees', DeepL translation) + - "₺": [T: "török líra"] # 0x20ba (en: 'turkish liras', DeepL translation) + - "⃐": [T: "bal szigony felett díszítés"] # 0x20d0 (en: 'left harpoon above embellishment', DeepL translation) + - "⃑": [T: "jobb szigony a díszítés felett"] # 0x20d1 (en: 'right harpoon above embellishment', DeepL translation) + - "⃒": [T: "hosszú függőleges vonal feletti díszítés"] # 0x20d2 (en: 'long vertical line overlay embellishment', DeepL translation) + - "⃓": [T: "rövid függőleges vonallal fedett díszítés"] # 0x20d3 (en: 'short vertical line overlay embellishment', DeepL translation) + - "⃔": [T: "az óramutató járásával ellentétes irányú nyíl a díszítés felett"] # 0x20d4 (en: 'anticlockwise arrow above embellishment', DeepL translation) + - "⃕": [T: "az óramutató járásával megegyező irányú nyíl a díszítés felett"] # 0x20d5 (en: 'clockwise arrow above embellishment', DeepL translation) + - "⃖": [T: "bal nyíl a díszítés felett"] # 0x20d6 (en: 'left arrow above embellishment', DeepL translation) + - "⃗": [T: "jobb nyíl a díszítés fölött"] # 0x20d7 (en: 'right arrow above embellishment', DeepL translation) + - "⃘": [T: "gyűrű feletti díszítés"] # 0x20d8 (en: 'ring overlay embellishment', DeepL translation) + - "⃙": [T: "óramutató járásával megegyező gyűrűs feliratú díszítés"] # 0x20d9 (en: 'clockwise ring overlay embellishment', DeepL translation) + - "⃚": [T: "óramutató járásával ellentétes irányú gyűrű feletti díszítés"] # 0x20da (en: 'anticlockwise ring overlay embellishment', DeepL translation) + - "⃛": [T: "hármas pont"] # 0x20db (en: 'triple dot', DeepL translation) + - "⃜": [T: "négyes pont"] # 0x20dc (en: 'quadruple dot', DeepL translation) + - "⃝": [T: "bezáró kör díszítés"] # 0x20dd (en: 'enclosing circle embellishment', DeepL translation) + - "⃞": [T: "záró négyzet alakú díszítés"] # 0x20de (en: 'enclosing square embellishment', DeepL translation) + - "⃟": [T: "zárt gyémánt díszítés"] # 0x20df (en: 'enclosing diamond embellishment', DeepL translation) + - "⃠": [T: "bezáró kör, visszafelé irányuló díszítéssel"] # 0x20e0 (en: 'enclosing circle backslash embellishment', DeepL translation) + - "⃡": [T: "balra jobbra nyíl a díszítés felett"] # 0x20e1 (en: 'left right arrow above embellishment', DeepL translation) + - "⃢": [T: "körülzáró képernyő díszítés"] # 0x20e2 (en: 'enclosing screen embellishment', DeepL translation) + - "⃣": [T: "zárt kulcsosházas díszítés"] # 0x20e3 (en: 'enclosing keycap embellishment', DeepL translation) + - "⃤": [T: "zárt felfelé mutató háromszög díszítés"] # 0x20e4 (en: 'enclosing upward pointing triangle embellishment', DeepL translation) + - "⃥": [T: "fordított solidus feletti díszítés"] # 0x20e5 (en: 'reverse solidus overlay embellishment', DeepL translation) + - "⃦": [T: "dupla függőleges ecsetvonás díszítés"] # 0x20e6 (en: 'double verticle stroke embellishment', DeepL translation) + - "⃧": [T: "járadékszimbólum díszítés"] # 0x20e7 (en: 'annuity symbol embellishment', DeepL translation) + - "⃨": [T: "háromszoros aláhúzás"] # 0x20e8 (en: 'triple underdot', DeepL translation) + - "⃩": [T: "széles híd a díszítés felett"] # 0x20e9 (en: 'wide bridge above embellishment', DeepL translation) + - "⃪": [T: "bal nyíl feletti díszítés"] # 0x20ea (en: 'left arrow overlay embellishment', DeepL translation) + - "⃫": [T: "hosszú dupla szolidus feliratú díszítés"] # 0x20eb (en: 'long double solidus overlay embellishment', DeepL translation) + - "⃬": [T: "jobb szigony kampós díszítéssel"] # 0x20ec (en: 'right harpoon with barb down embellishment', DeepL translation) + - "⃭": [T: "bal szigony kampós díszítéssel"] # 0x20ed (en: 'left harpoon with barb down embellishment', DeepL translation) + - "⃮": [T: "balra nyíl alatti díszítés"] # 0x20ee (en: 'left arrow below embellishment', DeepL translation) + - "⃯": [T: "jobbra nyíl alatti díszítés"] # 0x20ef (en: 'right arrow below embellishment', DeepL translation) + - "⃰": [T: "csillag a díszítés felett"] # 0x20f0 (en: 'asterisk above embellishment', DeepL translation) + - "℄": [T: "középvonal szimbólum"] # 0x2104 (en: 'center line symbol', DeepL translation) + - "℅": [T: "gondoskodik valamiről"] # 0x2105 (DeepL translation) + - "℆": [T: "egyből"] # 0x2106 (DeepL translation) + - "ℇ": [T: "euler-állandó"] # 0x2107 (en: 'euler's constant', DeepL translation) + - "℈": [T: "skrupulusok"] # 0x2108 (en: 'scruples', DeepL translation) + - "℉": [T: "fahrenheit fok"] # 0x2109 (en: 'degrees fahrenheit', DeepL translation) + - "ℊ": [T: "alsó index g"] # 0x210a (en: 'script g', DeepL translation) + - "ℌℑℨℭ": # 0x210c, 0x2111, 0x2128, 0x212d + - T: "fraktur" # (DeepL translation) + - SPELL: "translate('.', 'ℌℑℨℭ', 'HIZC')" + + - "ℍℙℾℿ": # 0x210d, 0x2119, 0x213e, 0x213f + - T: "dupla leütésű" # (en: 'double struck', DeepL translation) + - SPELL: "translate('.', 'ℍℙℾℿ', 'HPΓΠ')" + + - "ℎ": [T: "planck-állandó"] # 0x210e (en: 'planck constant', DeepL translation) + - "ℏ": [T: "h bar"] # 0x210f (DeepL translation) + + - "ℐℒ℘ℬℰℱℳ": # 0x2110, 0x2112, 0x2118, 0x2130, 0x2131, 0x2133 + - T: "alsó index" # (DeepL translation) + - SPELL: "translate('.', 'ℐℒ℘ℬℰℱℳ', 'ILPBEFM')" + + - "℔": [T: "font"] # 0x2114 (en: 'pounds', DeepL translation) + - "№": [T: "szám"] # 0x2116 (en: 'number', DeepL translation) + - "℥": [T: "unciák"] # 0x2125 (en: 'ounces', DeepL translation) + - "Ω": [T: "ohm"] # 0x2126 (en: 'ohms', DeepL translation) + - "℧": [T: "mhos"] # 0x2127 (DeepL translation) + - "℩": [T: "fordított jota"] # 0x2129 (en: 'turned iota', DeepL translation) + - "K": [T: "kelvin"] # 0x212a (DeepL translation) + - "Å": [T: "angström"] # 0x212b (en: 'angstroms', DeepL translation) + - "ℯ": [T: "alsó index e"] # 0x212f (en: 'script e', DeepL translation) + + # coalesced some chars that use cap letters + - "Ⅎ℺⅁⅂⅃⅄": # 0x2132, 0x213a, 0x2141, 0x2142, 0x2143, 0x2144 + - test: + - if: "'.' = '℺'" + then: [T: "forgatott"] # (en: 'rotated', DeepL translation) + - else_if: "'.' = 'Ⅎ'" + then: [T: "fordított"] # (en: 'turned', DeepL translation) + - else_if: "'.' = '⅃'" + then: [T: "fordított talpatlan"] # (en: 'reversed sans-serif', DeepL translation) + else: [T: "fordított talpatlan"] # (en: 'turned sans-serif', DeepL translation) + - SPELL: "translate('.', 'Ⅎ℺⅁⅂⅃⅄', 'FQGLLY')" + + - "ℴ": [T: "alsó index o"] # 0x2134 (en: 'script o', DeepL translation) + - "ℵ": [T: "első transzfinit kardinális"] # 0x2135 (en: 'first transfinite cardinal', DeepL translation) + - "ℶ": [T: "második transzfinit kardinális"] # 0x2136 (en: 'second transfinite cardinal', DeepL translation) + - "ℷ": [T: "harmadik transzfinit kardinális"] # 0x2137 (en: 'third transfinite cardinal', DeepL translation) + - "ℸ": [T: "negyedik transzfinit kardinális"] # 0x2138 (en: 'fourth transfinite cardinal', DeepL translation) + - "ℼ": [T: "dupla leütött pi"] # 0x213c (en: 'double struck pi', DeepL translation) + - "ℽ": [T: "dupla leütött gamma"] # 0x213d (en: 'double struck gamma', DeepL translation) + - "⅀": [T: "kettős leütött n-es összegzés"] # 0x2140 (en: 'double struck n-ary summation', DeepL translation) + - "⅋": [T: "fordított erősítőjel"] # 0x214b (en: 'turned ampersand', DeepL translation) + - "⅌": [T: "per"] # 0x214c (DeepL translation) + - "ⅎ": [T: "fordított f"] # 0x214e (en: 'turned F', DeepL translation) + - "¼": [T: "egy negyed"] # 0x00bc (en: 'one quarter', DeepL translation) + - "½": [T: "egy fél"] # 0x00bd (en: 'one half', DeepL translation) + - "¾": [T: "három negyed"] # 0x00be (en: 'three quarters', DeepL translation) + - "⅐": [T: "egy heted"] # 0x2150 (en: 'one seventh', DeepL translation) + - "⅑": [T: "egy kilenced"] # 0x2151 (en: 'one ninth', DeepL translation) + - "⅒": [T: "egy tized"] # 0x2152 (en: 'one tenth', DeepL translation) + - "⅓": [T: "egyharmad"] # 0x2153 (en: 'one third', DeepL translation) + - "⅔": [T: "két harmad"] # 0x2154 (en: 'two thirds', DeepL translation) + - "⅕": [T: "egy ötöd"] # 0x2155 (en: 'one fifth', DeepL translation) + - "⅖": [T: "két ötöd"] # 0x2156 (en: 'two fifths', DeepL translation) + - "⅗": [T: "három ötöd"] # 0x2157 (en: 'three fifths', DeepL translation) + - "⅘": [T: "négy ötöd"] # 0x2158 (en: 'four fifths', DeepL translation) + - "⅙": [T: "egy hatod"] # 0x2159 (en: 'one sixth', DeepL translation) + - "⅚": [T: "öt hatod"] # 0x215a (en: 'five sixths', DeepL translation) + - "⅛": [T: "egy nyolcad"] # 0x215b (en: 'one eighth', DeepL translation) + - "⅜": [T: "három nyolcad"] # 0x215c (en: 'three eighths', DeepL translation) + - "⅝": [T: "öt nyolcad"] # 0x215d (en: 'five eighths', DeepL translation) + - "⅞": [T: "hét nyolcad"] # 0x215e (en: 'seven eighths', DeepL translation) + - "⅟": [T: "egy fölött"] # 0x215f (en: 'one over', DeepL translation) + - "Ⅰ": [T: "I"] # 0x2160 (en: 'I', DeepL translation) + - "Ⅱ": [T: "I I"] # 0x2161 (en: 'I I', DeepL translation) + - "Ⅲ": [T: "Ii I I"] # 0x2162 (en: 'I I I', DeepL translation) + - "Ⅳ": [T: "I V"] # 0x2163 (en: 'I V', DeepL translation) + - "Ⅴ": [T: "V"] # 0x2164 (en: 'V', DeepL translation) + - "Ⅵ": [T: "V I"] # 0x2165 (en: 'V I', DeepL translation) + - "Ⅶ": [T: "V I I"] # 0x2166 (en: 'V I I', DeepL translation) + - "Ⅷ": [T: "V I I I"] # 0x2167 (en: 'V I I I', DeepL translation) + - "Ⅸ": [T: "I X"] # 0x2168 (en: 'I X', DeepL translation) + - "Ⅹ": [T: "X"] # 0x2169 (en: 'X', DeepL translation) + - "Ⅺ": [T: "X I"] # 0x216a (en: 'X I', DeepL translation) + - "Ⅻ": [T: "X I I"] # 0x216b (en: 'X I I', DeepL translation) + - "Ⅼ": [T: "L"] # 0x216c (en: 'L', DeepL translation) + - "Ⅽ": [T: "C"] # 0x216d (en: 'C', DeepL translation) + - "Ⅾ": [T: "D"] # 0x216e (en: 'D', DeepL translation) + - "Ⅿ": [T: "M"] # 0x216f (en: 'M', DeepL translation) + - "ⅰ": [T: "I"] # 0x2170 (en: 'I', DeepL translation) + - "ⅱ": [T: "I I"] # 0x2171 (en: 'I I', DeepL translation) + - "ⅲ": [T: "I I I"] # 0x2172 (en: 'I I I', DeepL translation) + - "ⅳ": [T: "I V"] # 0x2173 (en: 'I V', DeepL translation) + - "ⅴ": [T: "V"] # 0x2174 (en: 'V', DeepL translation) + - "ⅵ": [T: "V I"] # 0x2175 (en: 'V I', DeepL translation) + - "ⅶ": [T: "V I I"] # 0x2176 (en: 'V I I', DeepL translation) + - "ⅷ": [T: "V I I I"] # 0x2177 (en: 'V I I I', DeepL translation) + - "ⅸ": [T: "I X"] # 0x2178 (en: 'I X', DeepL translation) + - "ⅹ": [T: "X"] # 0x2179 (en: 'X', DeepL translation) + - "ⅺ": [T: "X I"] # 0x217a (en: 'X I', DeepL translation) + - "ⅻ": [T: "X I I"] # 0x217b (en: 'X I I', DeepL translation) + - "ⅼ": [T: "L"] # 0x217c (en: 'L', DeepL translation) + - "ⅽ": [T: "C"] # 0x217d (en: 'C', DeepL translation) + - "ⅾ": [T: "D"] # 0x217e (en: 'D', DeepL translation) + - "ⅿ": [T: "M"] # 0x217f (en: 'M', DeepL translation) + - "↉": [T: "nulla harmad"] # 0x2189 (en: 'zero thirds', DeepL translation) + - "↔": [T: "balra jobbra nyíl"] # 0x2194 (en: 'left right arrow', DeepL translation) + - "↕": [T: "felfelé lefelé mutató nyíl"] # 0x2195 (en: 'up down arrow', DeepL translation) + - "↖": [T: "északnyugati nyíl"] # 0x2196 (en: 'north west arrow', DeepL translation) + - "↗": # 0x2197 + - test: + if: "ancestor::*[2][self::m:limit]" + then: [T: "alulról közelít"] # (en: 'approaches from below', DeepL translation) + else: [T: "északkeleti nyíl"] # (en: 'north east arrow', DeepL translation) + + - "↘": # 0x2198 + - test: + if: "ancestor::*[2][self::m:limit]" + then: [T: "felülről közelít"] # (en: 'approaches from above', DeepL translation) + else: [T: "délkeleti nyíl"] # (en: 'south east arrow', DeepL translation) + + - "↙": [T: "délnyugati nyíl"] # 0x2199 (en: 'south west arrow', DeepL translation) + - "↚": [T: "balra nyíl vonallal"] # 0x219a (en: 'left arrow with stroke', DeepL translation) + - "↛": [T: "jobbra nyíl vonallal"] # 0x219b (en: 'right arrow with stroke', DeepL translation) + - "↜": [T: "bal oldali hullámos nyíl"] # 0x219c (en: 'left wave arrow', DeepL translation) + - "↝": [T: "jobb oldali hullámos nyíl"] # 0x219d (en: 'right wave arrow', DeepL translation) + - "↞": [T: "bal kétfejű nyíl"] # 0x219e (en: 'left two headed arrow', DeepL translation) + - "↟": [T: "felfelé kétfejű nyíl"] # 0x219f (en: 'up two headed arrow', DeepL translation) + - "↠": [T: "jobb kétfejű nyíl"] # 0x21a0 (en: 'right two headed arrow', DeepL translation) + - "↡": [T: "lefelé kétfejű nyíl"] # 0x21a1 (en: 'down two headed arrow', DeepL translation) + - "↢": [T: "balra mutató nyíl farokkal"] # 0x21a2 (en: 'left arrow with tail', DeepL translation) + - "↣": [T: "jobbra mutató nyíl farokkal"] # 0x21a3 (en: 'right arrow with tail', DeepL translation) + - "↤": [T: "bal nyíl a sávból"] # 0x21a4 (en: 'left arrow from bar', DeepL translation) + - "↥": [T: "vonaltól induló felfelé mutató nyíl"] # 0x21a5 (en: 'up arrow from bar', DeepL translation) + - "↦": [T: "jobbra mutató nyíl a sávból"] # 0x21a6 (en: 'right arrow from bar', DeepL translation) + - "↧": [T: "lefelé mutató nyíl a sávból"] # 0x21a7 (en: 'down arrow from bar', DeepL translation) + - "↨": [T: "fel-le nyíl alappal"] # 0x21a8 (en: 'up down arrow with base', DeepL translation) + - "↩": [T: "bal nyíl horoggal"] # 0x21a9 (en: 'left arrow with hook', DeepL translation) + - "↪": [T: "jobbra mutató nyíl horoggal"] # 0x21aa (en: 'right arrow with hook', DeepL translation) + - "↫": [T: "bal nyíl hurokkal"] # 0x21ab (en: 'left arrow with loop', DeepL translation) + - "↬": [T: "jobbra mutató nyíl hurokkal"] # 0x21ac (en: 'right arrow with loop', DeepL translation) + - "↭": [T: "balra jobbra hullámzó nyíl"] # 0x21ad (en: 'left right wave arrow', DeepL translation) + - "↮": [T: "balra jobbra nyíl függőleges vonallal"] # 0x21ae (en: 'left right arrow with stroke', DeepL translation) + - "↯": [T: "lefelé cikkcakkos nyíl"] # 0x21af (en: 'down zigzag arrow', DeepL translation) + - "↰": [T: "felfelé nyíl balra mutató heggyel"] # 0x21b0 (en: 'up arrow with tip left', DeepL translation) + - "↱": [T: "felfelé nyíl jobbra mutató heggyel"] # 0x21b1 (en: 'up arrow with tip right', DeepL translation) + - "↲": [T: "lefelé mutató nyíl hegyével balra"] # 0x21b2 (en: 'down arrow with tip left', DeepL translation) + - "↳": [T: "lefelé mutató nyíl hegyével jobbra"] # 0x21b3 (en: 'down arrow with tip right', DeepL translation) + - "↴": [T: "jobbra nyíl sarokkal lefelé"] # 0x21b4 (en: 'right arrow with corner down', DeepL translation) + - "↵": [T: "lefelé mutató nyíl bal oldali sarokkal"] # 0x21b5 (en: 'down arrow with corner left', DeepL translation) + - "↶": [T: "az óramutató járásával ellentétes irányú felső félköríves nyíl"] # 0x21b6 (en: 'anticlockwise top semicircle arrow', DeepL translation) + - "↷": [T: "az óramutató járásával megegyezően felső félköríves nyíl"] # 0x21b7 (en: 'clockwise top semicircle arrow', DeepL translation) + - "↸": [T: "északnyugati nyíl a hosszú sávra"] # 0x21b8 (en: 'north west arrow to long bar', DeepL translation) + - "↹": [T: "bal nyíl a sáv fölé jobb nyíl a sáv fölé"] # 0x21b9 (en: 'left arrow to bar over right arrow to bar', DeepL translation) + - "↺": [T: "az óramutató járásával ellentétes irányban nyitott kör alakú nyíl"] # 0x21ba (en: 'anticlockwise open circle arrow', DeepL translation) + - "↻": [T: "az óramutató járásával megegyező irányban nyitott kör alakú nyíl"] # 0x21bb (en: 'clockwise open circle arrow', DeepL translation) + - "↼": [T: "bal oldali szigony felfelé"] # 0x21bc (en: 'left harpoon up', DeepL translation) + - "↽": [T: "bal szigony lefelé"] # 0x21bd (en: 'left harpoon down', DeepL translation) + - "↾": [T: "felfelé szigony jobbra"] # 0x21be (en: 'up harpoon right', DeepL translation) + - "↿": [T: "fel szigony balra"] # 0x21bf (en: 'up harpoon left', DeepL translation) + - "⇀": [T: "jobb szigony felfelé"] # 0x21c0 (en: 'right harpoon up', DeepL translation) + - "⇁": [T: "jobb szigony lefelé"] # 0x21c1 (en: 'right harpoon down', DeepL translation) + - "⇂": [T: "lefelé szigony jobbra"] # 0x21c2 (en: 'down harpoon right', DeepL translation) + - "⇃": [T: "lefelé mutató szigony balra"] # 0x21c3 (en: 'down harpoon left', DeepL translation) + - "⇄": [T: "jobbra mutató nyíl a balra mutató nyíl felett"] # 0x21c4 (en: 'right arrow over left arrow', DeepL translation) + - "⇅": [T: "felfelé mutató nyíl a lefelé mutató nyíltól balra"] # 0x21c5 (en: 'up arrow left of down arrow', DeepL translation) + - "⇆": [T: "balra mutató nyíl a jobbra mutató nyíl felett"] # 0x21c6 (en: 'left arrow over right arrow', DeepL translation) + - "⇇": [T: "bal párosított nyilak"] # 0x21c7 (en: 'left paired arrows', DeepL translation) + - "⇈": [T: "felfelé párosított nyilak"] # 0x21c8 (en: 'up paired arrows', DeepL translation) + - "⇉": [T: "jobb oldali párosított nyilak"] # 0x21c9 (en: 'right paired arrows', DeepL translation) + - "⇊": [T: "lefelé párosított nyilak"] # 0x21ca (en: 'down paired arrows', DeepL translation) + - "⇋": [T: "bal szigony a jobb szigony felett"] # 0x21cb (en: 'left harpoon over right harpoon', DeepL translation) + - "⇌": [T: "jobb szigony a bal szigony felett"] # 0x21cc (en: 'right harpoon over left harpoon', DeepL translation) + - "⇍": [T: "bal kettős nyíl függőleges vonallal"] # 0x21cd (en: 'left double arrow with stroke', DeepL translation) + - "⇎": [T: "balra jobbra dupla nyíl függőleges vonallal"] # 0x21ce (en: 'left right double arrow with stroke', DeepL translation) + - "⇏": [T: "jobb oldali kettős nyíl vonallal"] # 0x21cf (en: 'right double arrow with stroke', DeepL translation) + - "⇐": [T: "bal dupla nyíl"] # 0x21d0 (en: 'left double arrow', DeepL translation) + - "⇑": [T: "felfelé mutató kettős nyíl"] # 0x21d1 (en: 'up double arrow', DeepL translation) + - "⇓": [T: "lefelé dupla nyíl"] # 0x21d3 (en: 'down double arrow', DeepL translation) + - "⇔": [T: "ha, és csak ha"] # 0x21d4 (en: 'if and only if', DeepL translation) + - "⇕": [T: "fel le dupla nyíl"] # 0x21d5 (en: 'up down double arrow', DeepL translation) + - "⇖": [T: "északnyugati dupla nyíl"] # 0x21d6 (en: 'north west double arrow', DeepL translation) + - "⇗": [T: "északkeleti dupla nyíl"] # 0x21d7 (en: 'north east double arrow', DeepL translation) + - "⇘": [T: "délkeleti dupla nyíl"] # 0x21d8 (en: 'south east double arrow', DeepL translation) + - "⇙": [T: "délnyugati dupla nyíl"] # 0x21d9 (en: 'south west double arrow', DeepL translation) + - "⇚": [T: "balra mutató hármas nyíl"] # 0x21da (en: 'left triple arrow', DeepL translation) + - "⇛": [T: "jobbra mutató hármas nyíl"] # 0x21db (en: 'right triple arrow', DeepL translation) + - "⇜": [T: "bal szögletes nyíl"] # 0x21dc (en: 'left squiggle arrow', DeepL translation) + - "⇝": [T: "jobb szögletes nyíl"] # 0x21dd (en: 'right squiggle arrow', DeepL translation) + - "⇞": [T: "felfelé mutató nyíl dupla vonallal"] # 0x21de (en: 'up arrow with double stroke', DeepL translation) + - "⇟": [T: "lefelé nyíl dupla vonallal"] # 0x21df (en: 'down arrow with double stroke', DeepL translation) + - "⇠": [T: "balra szaggatott nyíl"] # 0x21e0 (en: 'left dashed arrow', DeepL translation) + - "⇡": [T: "felfelé szaggatott nyíl"] # 0x21e1 (en: 'up dashed arrow', DeepL translation) + - "⇢": [T: "jobbra szaggatott nyíl"] # 0x21e2 (en: 'right dashed arrow', DeepL translation) + - "⇣": [T: "lefelé szaggatott nyíl"] # 0x21e3 (en: 'down dashed arrow', DeepL translation) + - "⇤": [T: "balra mutató nyíl a sávhoz"] # 0x21e4 (en: 'left arrow to bar', DeepL translation) + - "⇥": [T: "jobbra mutató nyíl a sávhoz"] # 0x21e5 (en: 'right arrow to bar', DeepL translation) + - "⇦": [T: "bal fehér nyíl"] # 0x21e6 (en: 'left white arrow', DeepL translation) + - "⇧": [T: "felfelé mutató fehér nyíl"] # 0x21e7 (en: 'up white arrow', DeepL translation) + - "⇨": [T: "jobb oldali fehér nyíl"] # 0x21e8 (en: 'right white arrow', DeepL translation) + - "⇩": [T: "lefelé mutató fehér nyíl"] # 0x21e9 (en: 'down white arrow', DeepL translation) + - "⇪": [T: "felfelé fehér nyíl a sávból"] # 0x21ea (en: 'up white arrow from bar', DeepL translation) + - "⇫": [T: "felfelé mutató fehér nyíl a talapzaton"] # 0x21eb (en: 'up white arrow on pedestal', DeepL translation) + - "⇬": [T: "felfelé mutató fehér nyíl talapzaton vízszintes sávval"] # 0x21ec (en: 'up white arrow on pedestal with horizontal bar', DeepL translation) + - "⇭": [T: "felfelé mutató fehér nyíl talapzaton függőleges sávval"] # 0x21ed (en: 'up white arrow on pedestal with vertical bar', DeepL translation) + - "⇮": [T: "felfelé fehér kettős nyíl"] # 0x21ee (en: 'up white double arrow', DeepL translation) + - "⇯": [T: "felfelé fehér kettős nyíl talapzaton"] # 0x21ef (en: 'up white double arrow on pedestal', DeepL translation) + - "⇰": [T: "jobb oldali fehér nyíl a falról"] # 0x21f0 (en: 'right white arrow from wall', DeepL translation) + - "⇱": [T: "északnyugati nyíl a sarokhoz"] # 0x21f1 (en: 'north west arrow to corner', DeepL translation) + - "⇲": [T: "délkeleti nyíl a sarokhoz"] # 0x21f2 (en: 'south east arrow to corner', DeepL translation) + - "⇳": [T: "fel le fehér nyíl"] # 0x21f3 (en: 'up down white arrow', DeepL translation) + - "⇴": [T: "jobbra mutató nyíl kis körrel"] # 0x21f4 (en: 'right arrow with small circle', DeepL translation) + - "⇵": [T: "lefelé mutató nyíl balra a felfelé mutató nyílból"] # 0x21f5 (en: 'down arrow left of up arrow', DeepL translation) + - "⇶": [T: "három jobbra mutató nyíl"] # 0x21f6 (en: 'three right arrows', DeepL translation) + - "⇷": [T: "bal nyíl függőleges vonallal"] # 0x21f7 (en: 'left arrow with vertical stroke', DeepL translation) + - "⇸": [T: "jobb oldali nyíl függőleges vonallal"] # 0x21f8 (en: 'right arrow with vertical stroke', DeepL translation) + - "⇹": [T: "balra jobbra nyíl függőleges vonallal"] # 0x21f9 (en: 'left right arrow with vertical stroke', DeepL translation) + - "⇺": [T: "bal nyíl dupla függőleges vonallal"] # 0x21fa (en: 'left arrow with double vertical stroke', DeepL translation) + - "⇻": [T: "jobb nyíl dupla függőleges vonallal"] # 0x21fb (en: 'right arrow with double vertical stroke', DeepL translation) + - "⇼": [T: "bal jobb nyíl dupla függőleges vonallal"] # 0x21fc (en: 'left right arrow with double vertical stroke', DeepL translation) + - "⇽": [T: "bal nyitott fejű nyíl"] # 0x21fd (en: 'left open headed arrow', DeepL translation) + - "⇾": [T: "jobbra nyitott fejű nyíl"] # 0x21fe (en: 'right open headed arrow', DeepL translation) + - "⇿": [T: "bal jobb nyitott fejű nyíl"] # 0x21ff (en: 'left right open headed arrow', DeepL translation) + - "∀": [T: "mindenki számára"] # 0x2200 (en: 'for all', DeepL translation) + - "∁": # 0x2201 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'the', DeepL translation) + - T: "kiegészítése" # (en: 'complement of', DeepL translation) + - "∃": [T: "létezik"] # 0x2203 (en: 'there exists', DeepL translation) + - "∄": [T: "nem létezik"] # 0x2204 (en: 'there does not exist', DeepL translation) + - "∅": [T: "üres halmaz"] # 0x2205 (en: 'empty set', DeepL translation) + - "∇": [T: "nahblah"] # 0x2207 (DeepL translation) + - "∋": [T: "tagként tartalmazza"] # 0x220b (en: 'contains the member', DeepL translation) + - "∌": [T: "tagként nem tartalmazza"] # 0x220c (en: 'does not contain the member', DeepL translation) + - "∍": [T: "részben tagként tartalmazza"] # 0x220d (en: 'contains the member', DeepL translation) + - "∎": [T: "bizonyítás vége"] # 0x220e (en: 'end of proof', DeepL translation) + - "∏": [T: "produktum"] # 0x220f (en: 'product', DeepL translation) + - "∑": [T: "összeg"] # 0x2211 (DeepL translation) + - "−": [T: "mínusz"] # 0x2212 (en: 'minus', DeepL translation) + - "∓": [T: "mínusz vagy plusz"] # 0x2213 (en: 'minus or plus', DeepL translation) + - "∔": [T: "pontozott plusz"] # 0x2214 (en: 'dot plus', DeepL translation) + - "∕": [T: "osztva"] # 0x2215 (en: 'divided by', DeepL translation) + - "∖": [T: "halmaz mínusz"] # 0x2216 (en: 'set minus', DeepL translation) + - "∗": [T: "csillag operátor"] # 0x2217 (en: 'times', DeepL translation) + - "∘": [T: "gyűrű operátor"] # 0x2218 (en: 'composed with', DeepL translation) + - "∙": # 0x2219 + - test: + if: "@data-chem-formula-op" + then: [T: "pont"] # (en: 'dot', DeepL translation) + else: [T: "szorozva"] # (en: 'times', DeepL translation) + + - "∛": # 0x221b + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'the', DeepL translation) + - T: "köbgyöke" # (en: 'cube root of', DeepL translation) + - "∜": # 0x221c + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'the', DeepL translation) + - T: "negyedik gyöke" # (en: 'fourth root of', DeepL translation) + - "∞": [T: "végtelen"] # 0x221e (en: 'infinity', DeepL translation) + - "∟": [T: "derékszög"] # 0x221f (en: 'right angle', DeepL translation) + - "∠": [T: "szög"] # 0x2220 (en: 'angle', DeepL translation) + - "∡": [T: "mért szög"] # 0x2221 (en: 'measured angle', DeepL translation) + - "∢": [T: "gömbszög"] # 0x2222 (en: 'spherical angle', DeepL translation) + - "∣": [T: "osztója"] # 0x2223 (en: 'divides', DeepL translation) + - "∤": [T: "nem osztója"] # 0x2224 (en: 'does not divide', DeepL translation) + - "∧": [T: "logikai és"] # 0x2227 (en: 'and', DeepL translation) + - "∨": [T: "logikai vagy"] # 0x2228 (en: 'or', DeepL translation) + - "∩": [T: "metszéspont"] # 0x2229 (en: 'intersection', DeepL translation) + - "∪": [T: "unió"] # 0x222a (en: 'union', DeepL translation) + - "∫": [T: "integrált"] # 0x222b (en: 'integral', DeepL translation) + - "∬": [T: "kettős integrál"] # 0x222c (en: 'double integral', DeepL translation) + - "∭": [T: "hármas integrál"] # 0x222d (en: 'triple integral', DeepL translation) + - "∮": [T: "kontúr integrál"] # 0x222e (en: 'contour integral', DeepL translation) + - "∯": [T: "felszíni integrál"] # 0x222f (en: 'surface integral', DeepL translation) + - "∰": [T: "térfogati integrál"] # 0x2230 (en: 'volume integral', DeepL translation) + - "∱": [T: "az óramutató járásával megegyező integrál"] # 0x2231 (en: 'clockwise integral', DeepL translation) + - "∲": [T: "az óramutató járásával megegyező irányú kontúr integrál"] # 0x2232 (en: 'clockwise contour integral', DeepL translation) + - "∳": [T: "az óramutató járásával ellentétes irányú kontúr integrál"] # 0x2233 (en: 'anticlockwise contour integral', DeepL translation) + - "∴": [T: "azért"] # 0x2234 (en: 'therefore', DeepL translation) + - "∵": [T: "mert"] # 0x2235 (en: 'because', DeepL translation) + - "∷": [T: "mint"] # 0x2237 (en: 'as', DeepL translation) + - "∸": [T: "pontozott mínusz"] # 0x2238 (en: 'dot minus', DeepL translation) + - "∹": [T: "többletet tartalmaz ahhoz képest,"] # 0x2239 (en: 'has excess compared to', DeepL translation) + - "∺": # 0x223a + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "geometriailag arányos" # (en: 'geometrically proportional to', DeepL translation) + - "∻": # 0x223b + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "homotetikus" # (en: 'homothetic to', DeepL translation) + - "∼": [T: "változik"] # 0x223c (en: 'varies with', DeepL translation) + - "∽": [T: "fordított tilde"] # 0x223d (en: 'reversed tilde', DeepL translation) + - "∿": [T: "szinuszhullám"] # 0x223f (en: 'sine wave', DeepL translation) + - "≀": [T: "koszorú szorzat"] # 0x2240 (en: 'wreath product', DeepL translation) + - "≁": [T: "nem tilde"] # 0x2241 (en: 'not tilde', DeepL translation) + - "≂": [T: "mínusz tilde"] # 0x2242 (en: 'minus tilde', DeepL translation) + - "≃": # 0x2243 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "aszimptotikusan egyenlő" # (en: 'asymptotically equal to', DeepL translation) + - "≄": # 0x2244 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nem aszimptotikusan egyenlő" # (en: 'not asymptotically equal to', DeepL translation) + - "≅": # 0x2245 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nagyjából egyenlő" # (en: 'congruent to', DeepL translation) + - "≆": # 0x2246 + - test: + if: "$Verbosity!='Terse'" + then: [T: "az"] # (en: 'is', DeepL translation) + - T: "megközelítőleg, de valójában nem egyenlő" # (en: 'approximately but not actually equal to', DeepL translation) + - "≇": # 0x2247 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "sem megközelítőleg, sem ténylegesen nem egyenlő" # (en: 'not congruent to', DeepL translation) + - "≈": # 0x2248 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "megközelítőleg egyenlő" # (en: 'approximately equal to', DeepL translation) + - "≉": # 0x2249 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "megközelítőleg sem egyenlő" # (en: 'not approximately equal to', DeepL translation) + - "≊": # 0x224a + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "megközelítőleg egyenlő vagy egyenlő" # (en: 'approximately equal or equal to', DeepL translation) + - "≋": [T: "hármas tilde"] # 0x224b (en: 'triple tilde', DeepL translation) + - "≌": [T: "mind egyenlőek"] # 0x224c (en: 'are all equal to', DeepL translation) + - "≍": # 0x224d + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "egyenértékű" # (en: 'equivalent to', DeepL translation) + - "≎": # 0x224e + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "geometriailag egyenértékű" # (en: 'geometrically equivalent to', DeepL translation) + - "≏": # 0x224f + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'the', DeepL translation) + - T: "közötti különbség" # (en: 'difference between', DeepL translation) + - "≐": [T: "megközelíti a határértéket"] # 0x2250 (en: 'approaches the limit', DeepL translation) + - "≑": # 0x2251 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "geometriailag egyenlő" # (en: 'geometrically equal to', DeepL translation) + - "≒": # 0x2252 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "a kép megközelítőleg egyenlő" # (en: 'approximately equal to or the image of', DeepL translation) + - "≓": # 0x2253 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is the', DeepL translation) + - T: "kép nagyjából azonos" # (en: 'image of or approximately equal to', DeepL translation) + - "≔": [T: "kettőspont egyenlő"] # 0x2254 (en: 'colon equals', DeepL translation) + - "≕": [T: "egyenlő kettőspont"] # 0x2255 (en: 'equals colon', DeepL translation) + - "≖": [T: "gyűrű egyenlő"] # 0x2256 (en: 'ring in equal to', DeepL translation) + - "≗": # 0x2257 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "megközelítőleg egyenlő" # (en: 'approximately equal to', DeepL translation) + - "≘": [T: "megfelel"] # 0x2258 (en: 'corresponds to', DeepL translation) + - "≙": [T: "becslés"] # 0x2259 (en: 'estimates', DeepL translation) + - "≚": # 0x225a + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "egyenlő szögű" # (en: 'equiangular to', DeepL translation) + - "≛": [T: "csillag egyenlő"] # 0x225b (en: 'star equals', DeepL translation) + - "≜": [T: "delta egyenlő"] # 0x225c (en: 'delta equals', DeepL translation) + - "≝": [T: "a következőképpen van definiálva"] # 0x225d (en: 'is defined to be', DeepL translation) + - "≞": # 0x225e + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "mért" # (en: 'measured by', DeepL translation) + - "≟": [T: "ismeretlen kapcsolatban áll"] # 0x225f (en: 'has an unknown relationship with', DeepL translation) + - "≢": # 0x2262 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nem azonos" # (en: 'not identical to', DeepL translation) + - "≣": # 0x2263 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "szigorúan egyenértékű" # (en: 'strictly equivalent to', DeepL translation) + - "≦": [T: "kisebb az egyenlőségjel fölött"] # 0x2266 (en: 'less than over equal to', DeepL translation) + - "≧": [T: "nagyobb, mint egyenlő"] # 0x2267 (en: 'greater than over equal to', DeepL translation) + - "≨": # 0x2268 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "kisebb, de nem egyenlő" # (en: 'less than but not equal to', DeepL translation) + - "≩": # 0x2269 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nagyobb, de nem egyenlő" # (en: 'greater than but not equal to', DeepL translation) + - "≪": # 0x226a + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "sokkal kisebb, mint" # (en: 'much less than', DeepL translation) + - "≫": # 0x226b + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "sokkal nagyobb, mint" # (en: 'much greater than', DeepL translation) + - "≬": # 0x226c + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "között" # (en: 'between', DeepL translation) + - "≭": # 0x226d + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nem egyenértékű" # (en: 'not equivalent to', DeepL translation) + - "≮": # 0x226e + - test: + if: "$Verbosity!='Terse'" + then: [T: "az"] # (en: 'is', DeepL translation) + - T: "nem kisebb, mint" # (en: 'not less than', DeepL translation) + - "≯": # 0x226f + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nem nagyobb, mint" # (en: 'not greater than', DeepL translation) + - "≰": # 0x2270 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "se nem kisebb, se nem egyenlő" # (en: 'neither less than nor equal to', DeepL translation) + - "≱": # 0x2271 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "se nem nagyobb, se nem egyenlő" # (en: 'neither greater than nor equal to', DeepL translation) + - "≲": # 0x2272 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "kisebb, vagy azzal egyenértékű" # (en: 'less than or equivalent to', DeepL translation) + - "≳": # 0x2273 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nagyobb, vagy egyenértékű" # (en: 'greater than or equivalent to', DeepL translation) + - "≴": # 0x2274 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "sem kisebb, sem egyenlő" # (en: 'neither less than nor equivalent to', DeepL translation) + - "≵": # 0x2275 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "se nem nagyobb, se nem egyenlő" # (en: 'neither greater than nor equivalent to', DeepL translation) + - "≶": # 0x2276 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "kisebb vagy nagyobb, mint" # (en: 'less than or greater than', DeepL translation) + - "≷": # 0x2277 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nagyobb vagy kisebb, mint" # (en: 'greater than or less than', DeepL translation) + - "≸": # 0x2278 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "sem kisebb, sem nagyobb, mint" # (en: 'neither less than nor greater than', DeepL translation) + - "≹": # 0x2279 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "se nem nagyobb, se nem kisebb" # (en: 'neither greater than nor less than', DeepL translation) + - "≺": [T: "megelőzi"] # 0x227a (en: 'precedes', DeepL translation) + - "≻": [T: "követi"] # 0x227b (en: 'succeeds', DeepL translation) + - "≼": [T: "megelőzi vagy egyenlő"] # 0x227c (en: 'precedes or is equal to', DeepL translation) + - "≽": [T: "követi vagy egyenlő"] # 0x227d (en: 'succeeds or is equal to', DeepL translation) + - "≾": [T: "megelőzi vagy egyenértékű"] # 0x227e (en: 'precedes or is equivalent to', DeepL translation) + - "≿": [T: "követi vagy egyenértékű"] # 0x227f (en: 'succeeds or is equivalent to', DeepL translation) + - "⊀": [T: "nem előzi meg"] # 0x2280 (en: 'does not precede', DeepL translation) + - "⊁": [T: "nem követi"] # 0x2281 (en: 'does not succeed', DeepL translation) + - "⊈": # 0x2288 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "se nem részhalmaza, se nem egyenlő" # (en: 'neither a subset of nor equal to', DeepL translation) + - "⊉": # 0x2289 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nem szuperhalmaza és nem egyenlő" # (en: 'neither a superset of nor equal to', DeepL translation) + - "⊊": [T: "részhalmaza, nem egyenlő jellel"] # 0x228a (en: 'subset of with not equal to', DeepL translation) + - "⊋": [T: "szuperhalmaza, nem egyenlő jellel"] # 0x228b (en: 'superset of with not equal to', DeepL translation) + - "⊌": [T: "többszörös halmaz"] # 0x228c (DeepL translation) + - "⊍": [T: "többszörös szorzás"] # 0x228d (en: 'multiset multiplication', DeepL translation) + - "⊎": [T: "többszörös unió"] # 0x228e (en: 'multiset union', DeepL translation) + - "⊏": [T: "négyzet képe"] # 0x228f (en: 'square image of', DeepL translation) + - "⊐": [T: "négyzet eredetije"] # 0x2290 (en: 'square original of', DeepL translation) + - "⊑": [T: "négyzet képe vagy egyenlő ezzel:"] # 0x2291 (en: 'square image of or equal to', DeepL translation) + - "⊒": [T: "négyzet eredetije vagy egyenlő ezzel:"] # 0x2292 (en: 'square original of or equal to', DeepL translation) + - "⊓": [T: "négyzet alakú sapka"] # 0x2293 (en: 'square cap', DeepL translation) + - "⊔": [T: "négyzet alakú csésze"] # 0x2294 (en: 'square cup', DeepL translation) + - "⊕": [T: "bekarikázott plusz"] # 0x2295 (en: 'circled plus', DeepL translation) + - "⊖": [T: "bekarikázott mínusz"] # 0x2296 (en: 'circled minus', DeepL translation) + - "⊗": [T: "bekarikázott szorzás"] # 0x2297 (en: 'circled times', DeepL translation) + - "⊘": [T: "bekarikázott osztás"] # 0x2298 (en: 'circled slash', DeepL translation) + - "⊙": [T: "bekarikázott pontoperátor"] # 0x2299 (en: 'circled dot operator', DeepL translation) + - "⊚": [T: "bekarikázott gyűrű operátor"] # 0x229a (en: 'circled ring', DeepL translation) + - "⊛": [T: "bekarikázott csillag operátor"] # 0x229b (en: 'circled asterisk', DeepL translation) + - "⊜": [T: "bekarikázott egyenlőségjel"] # 0x229c (en: 'circled equals', DeepL translation) + - "⊝": [T: "bekarikázott kötőjel"] # 0x229d (en: 'circled dash', DeepL translation) + - "⊞": [T: "pluszjel négyzetben"] # 0x229e (en: 'squared plus', DeepL translation) + - "⊟": [T: "mínuszjel négyzetben"] # 0x229f (en: 'squared minus', DeepL translation) + - "⊠": [T: "szorzásjel négyzetben"] # 0x22a0 (en: 'squared times', DeepL translation) + - "⊡": [T: "négyzetes pont operátor"] # 0x22a1 (en: 'squared dot operator', DeepL translation) + - "⊢": [T: "bizonyítja"] # 0x22a2 (en: 'proves', DeepL translation) + - "⊣": [T: "nem enged"] # 0x22a3 (en: 'does not yield', DeepL translation) + - "⊤": [T: "felső"] # 0x22a4 (en: 'top', DeepL translation) + - "⊥": # 0x22a5 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "alul" # (en: 'bottom', DeepL translation) + - "⊦": [T: "redukálódik"] # 0x22a6 (en: 'reduces to', DeepL translation) + - "⊧": [T: "modellezi"] # 0x22a7 (en: 'models', DeepL translation) + - "⊨": # 0x22a8 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "igaz" # (en: 'true', DeepL translation) + - "⊩": [T: "kényszeríti"] # 0x22a9 (en: 'forces', DeepL translation) + - "⊪": [T: "háromszoros függőleges vonal jobboldali forgókereszttel"] # 0x22aa (en: 'triple vertical bar right turnstile', DeepL translation) + - "⊫": [T: "kettős függőlegesvonal dupla jobboldali forgókereszttel"] # 0x22ab (en: 'double vertical bar double right turnstile', DeepL translation) + - "⊬": [T: "nem bizonyítja"] # 0x22ac (en: 'does not prove', DeepL translation) + - "⊭": # 0x22ad + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nem igaz" # (en: 'not true', DeepL translation) + - "⊮": [T: "nem kényszeríti"] # 0x22ae (en: 'does not force', DeepL translation) + - "⊯": [T: "negált kettős függőleges vonal dupla jobboldali forgókereszttel"] # 0x22af (en: 'negated double vertical bar double right turnstile', DeepL translation) + - "⊰": [T: "megelőzi az alatta lévő relációt"] # 0x22b0 (en: 'precedes under relation', DeepL translation) + - "⊱": [T: "követi az alatta lévő relációt"] # 0x22b1 (en: 'succeeds under relation', DeepL translation) + - "⊲": # 0x22b2 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "egy normális alcsoportja" # (en: 'a normal subgroup of', DeepL translation) + - "⊳": [T: "normál alcsoportként tartalmazza"] # 0x22b3 (en: 'contains as a normal subgroup', DeepL translation) + - "⊴": # 0x22b4 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "normál alcsoportja vagy egyenlő" # (en: 'a normal subgroup of or equal to', DeepL translation) + - "⊵": [T: "normál alcsoportként tartalmazza vagy egyenlő"] # 0x22b5 (en: 'contains as a normal subgroup or equal to', DeepL translation) + - "⊶": # 0x22b6 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "az eredeti" # (en: 'the original of', DeepL translation) + - "⊷": # 0x22b7 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "egy kép" # (en: 'an image of', DeepL translation) + - "⊸": [T: "többértékű leképezés"] # 0x22b8 (en: 'multimap', DeepL translation) + - "⊹": [T: "hermite-féle konjugált mátrix"] # 0x22b9 (en: 'hermitian conjugate matrix', DeepL translation) + - "⊺": [T: "interkaláció"] # 0x22ba (en: 'intercalate', DeepL translation) + - "⊻": [T: "xor"] # 0x22bb (DeepL translation) + - "⊼": [T: "nand"] # 0x22bc (DeepL translation) + - "⊽": [T: "nor"] # 0x22bd (en: 'nor', DeepL translation) + - "⊾": [T: "derékszög ívvel"] # 0x22be (en: 'right angle with arc', DeepL translation) + - "⊿": [T: "jobb oldali háromszög"] # 0x22bf (en: 'right triangle', DeepL translation) + - "⋀": [T: "logikai és"] # 0x22c0 (en: 'logical and', DeepL translation) + - "⋁": [T: "logikai vagy"] # 0x22c1 (en: 'logical or', DeepL translation) + - "⋂": [T: "metszet"] # 0x22c2 (en: 'intersection', DeepL translation) + - "⋃": [T: "unió"] # 0x22c3 (en: 'union', DeepL translation) + - "⋄": [T: "gyémánt operátor"] # 0x22c4 (en: 'diamond operator', DeepL translation) + - "⋅": # 0x22c5 + - test: + if: "@data-chem-formula-op" + then: [T: "pont"] # (en: 'dot', DeepL translation) + else: [T: "szorozva"] # (en: 'times', DeepL translation) + + - "⋆": [T: "szorozva"] # 0x22c6 (en: 'times', DeepL translation) + - "⋇": [T: "osztás szorzás"] # 0x22c7 (en: 'division times', DeepL translation) + - "⋈": [T: "természetes összekapcsolás"] # 0x22c8 (en: 'bowtie', DeepL translation) + - "⋉": # 0x22c9 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "bal oldali normális faktor féldirekt szorzata" # (en: 'the left normal factor semidirect product of', DeepL translation) + - "⋊": # 0x22ca + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "a jobb oldali normális faktor féldirekt szorzata" # (en: 'the right normal factor semidirect product of', DeepL translation) + - "⋋": # 0x22cb + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "bal oldali féldirekt szorzat" # (en: 'the left semidirect product of', DeepL translation) + - "⋌": # 0x22cc + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "jobb oldali féldirekt szorzata" # (en: 'the right semidirect product of', DeepL translation) + - "⋍": [T: "fordított tilde egyenlő"] # 0x22cd (en: 'reversed tilde equals', DeepL translation) + - "⋎": [T: "ívelt logikai vagy"] # 0x22ce (en: 'curly logical or', DeepL translation) + - "⋏": [T: "ívelt logikai és"] # 0x22cf (en: 'curly logical and', DeepL translation) + - "⋐": # 0x22d0 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "kettős részhalmaza ennek:" # (en: 'a double subset of', DeepL translation) + - "⋑": # 0x22d1 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "egy kettős szuperhalmaza ennek:" # (en: 'a double superset of', DeepL translation) + - "⋒": # 0x22d2 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'the', DeepL translation) + - T: "kettős metszéspontja ennek:" # (en: 'double intersection of', DeepL translation) + - "⋓": # 0x22d3 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'the', DeepL translation) + - T: "dupla uniója ennek:" # (en: 'double union of', DeepL translation) + - "⋔": # 0x22d4 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'the', DeepL translation) + - T: "megfelelő metszéspontja" # (en: 'proper intersection of', DeepL translation) + - "⋕": # 0x22d5 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "egyenlő és párhuzamos ezzel:" # (en: 'equal to and parallel to', DeepL translation) + - "⋖": [T: "kisebb, mint ponttal"] # 0x22d6 (en: 'less than with dot', DeepL translation) + - "⋗": [T: "nagyobb, mint ponttal"] # 0x22d7 (en: 'greater than with dot', DeepL translation) + - "⋘": # 0x22d8 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nagyon sokkal kisebb, mint" # (en: 'very much less than', DeepL translation) + - "⋙": # 0x22d9 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nagyon sokkal nagyobb, mint" # (en: 'very much greater than', DeepL translation) + - "⋚": # 0x22da + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "kisebb, mint egyenlő vagy nagyobb, mint" # (en: 'less than equal to or greater than', DeepL translation) + - "⋛": # 0x22db + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nagyobb, mint egyenlő vagy kisebb, mint" # (en: 'greater than equal to or less than', DeepL translation) + - "⋜": # 0x22dc + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "egyenlő vagy kisebb, mint" # (en: 'equal to or less than', DeepL translation) + - "⋝": # 0x22dd + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "egyenlő vagy nagyobb, mint" # (en: 'equal to or greater than', DeepL translation) + - "⋞": # 0x22de + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "egyenlő vagy megelőzi" # (en: 'equal to or precedes', DeepL translation) + - "⋟": # 0x22df + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "egyenlő, vagy követi" # (en: 'equal to or succeeds', DeepL translation) + - "⋠": [T: "nem előzi meg és nem egyenlő"] # 0x22e0 (en: 'does not precede nor is equal to', DeepL translation) + - "⋡": [T: "nem követi és nem egyenlő"] # 0x22e1 (en: 'does not succeed nor is equal to', DeepL translation) + - "⋢": [T: "nem négyzetképe vagy egyenlő"] # 0x22e2 (en: 'not square image of or equal to', DeepL translation) + - "⋣": [T: "nem négyzetes eredetije vagy egyenlő"] # 0x22e3 (en: 'not square original of or equal to', DeepL translation) + - "⋤": [T: "négyzetes képe vagy nem egyenlő"] # 0x22e4 (en: 'square image of or not equal to', DeepL translation) + - "⋥": [T: "négyzetes eredetije vagy nem egyenlő"] # 0x22e5 (en: 'square original of or not equal to', DeepL translation) + - "⋦": # 0x22e6 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "kevesebb, mint, de nem egyenlő" # (en: 'less than but not equivalent to', DeepL translation) + - "⋧": # 0x22e7 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nagyobb, mint, de nem egyenértékű" # (en: 'greater than but not equivalent to', DeepL translation) + - "⋨": [T: "megelőzi, de nem egyenértékű vele"] # 0x22e8 (en: 'precedes but is not equivalent to', DeepL translation) + - "⋩": [T: "követi, de nem egyenértékű"] # 0x22e9 (en: 'succeeds but is not equivalent to', DeepL translation) + - "⋪": # 0x22ea + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nem normális alcsoportja" # (en: 'not a normal subgroup of', DeepL translation) + - "⋫": [T: "nem tartalmazza normál alcsoportként"] # 0x22eb (en: 'does not contain as a normal subgroup', DeepL translation) + - "⋬": # 0x22ec + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nem normál alcsoportja, és nem egyenlő vele" # (en: 'not a normal subgroup of nor is equal to', DeepL translation) + - "⋭": [T: "nem tartalmazza normál alcsoportként és nem egyenlő vele"] # 0x22ed (en: 'does not contain as a normal subgroup nor is equal to', DeepL translation) + - "⋮": [T: "függőleges ellipszis"] # 0x22ee (en: 'vertical ellipsis', DeepL translation) + - "⋯": [T: "pont pont pont"] # 0x22ef (en: 'dot dot dot', DeepL translation) + - "⋰": [T: "felfelé átlós ellipszis"] # 0x22f0 (en: 'up diagonal ellipsis', DeepL translation) + - "⋱": [T: "átlós ellipszis"] # 0x22f1 (en: 'diagonal ellipsis', DeepL translation) + - "⋲": [T: "eleme, hosszú vízszintes vonallal"] # 0x22f2 (en: 'element of with long horizontal stroke', DeepL translation) + - "⋳": [T: "eleme, függőleges vonallal a vízszintes vonal végén"] # 0x22f3 (en: 'element of with vertical bar at end of horizontal stroke', DeepL translation) + - "⋴": [T: "kis eleme, függőleges vonallal a vízszintes vonal végén"] # 0x22f4 (en: 'element of with vertical bar at end of horizontal stroke', DeepL translation) + - "⋵": [T: "eleme, fölötte ponttal"] # 0x22f5 (en: 'element of with dot above', DeepL translation) + - "⋶": [T: "eleme, felülvonással"] # 0x22f6 (en: 'element of with overbar', DeepL translation) + - "⋷": [T: "kis eleme, felülvonással"] # 0x22f7 (en: 'element of with overbar', DeepL translation) + - "⋸": [T: "eleme, aláhúzással"] # 0x22f8 (en: 'element of with underbar', DeepL translation) + - "⋹": [T: "eleme két vízszintes vonallal"] # 0x22f9 (en: 'element of with two horizontal strokes', DeepL translation) + - "⋺": [T: "tartalmazza, hosszú vízszintes vonallal"] # 0x22fa (en: 'contains with long horizontal stroke', DeepL translation) + - "⋻": [T: "tartalmazza, függőleges vonallal a vízszintes vonal végén"] # 0x22fb (en: 'contains with vertical bar at end of horizontal stroke', DeepL translation) + - "⋼": [T: "kis tartalmazza, függőleges vonallal a vízszintes vonal végén"] # 0x22fc (en: 'contains with vertical bar at end of horizontal stroke', DeepL translation) + - "⋽": [T: "tartalmazza, felülvonással"] # 0x22fd (en: 'contains with overbar', DeepL translation) + - "⋾": [T: "kis tartalmazza, felülvonással"] # 0x22fe (en: 'contains with overbar', DeepL translation) + - "⋿": [T: "z jelölési csoport tagság"] # 0x22ff (en: 'z notation bag membership', DeepL translation) + - "⌀": [T: "átmérő"] # 0x2300 (en: 'diameter', DeepL translation) + - "⌁": [T: "elektromos nyíl"] # 0x2301 (en: 'electric arrow', DeepL translation) + - "⌂": [T: "ház"] # 0x2302 (en: 'house', DeepL translation) + - "⌃": [T: "felfelé mutató nyílhegy"] # 0x2303 (en: 'up arrowhead', DeepL translation) + - "⌄": [T: "lefelé mutató nyílhegy"] # 0x2304 (en: 'down arrowhead', DeepL translation) + - "⌅": [T: "projektív"] # 0x2305 (en: 'projective', DeepL translation) + - "⌆": [T: "perspektíva"] # 0x2306 (en: 'perspective', DeepL translation) + - "⌇": [T: "hullámvonal"] # 0x2307 (en: 'wavy line', DeepL translation) + - "⌈": [T: "bal felső egész rész"] # 0x2308 (en: 'left ceiling', DeepL translation) + - "⌉": [T: "jobb felső egész rész"] # 0x2309 (en: 'right ceiling', DeepL translation) + - "⌊": [T: "bal alsó egész rész"] # 0x230a (en: 'left floor', DeepL translation) + - "⌋": [T: "jobb alsó egész rész"] # 0x230b (en: 'right floor', DeepL translation) + - "⌌": [T: "jobb alsó vágás"] # 0x230c (en: 'bottom right crop', DeepL translation) + - "⌍": [T: "bal alsó vágás"] # 0x230d (en: 'bottom left crop', DeepL translation) + - "⌎": [T: "jobb felső vágás"] # 0x230e (en: 'top right crop', DeepL translation) + - "⌏": [T: "balra fent vágás"] # 0x230f (en: 'top left crop', DeepL translation) + - "⌐": [T: "fordított nem jel"] # 0x2310 (en: 'reversed not sign', DeepL translation) + - "⌑": [T: "négyzet alakú rombusz"] # 0x2311 (en: 'square lozenge', DeepL translation) + - "⌒": [T: "ív"] # 0x2312 (en: 'arc', DeepL translation) + - "⌓": [T: "szegmens"] # 0x2313 (en: 'segment', DeepL translation) + - "⌔": [T: "szektor"] # 0x2314 (en: 'sector', DeepL translation) + - "⌕": [T: "telefonrögzítő"] # 0x2315 (en: 'telephone recorder', DeepL translation) + - "⌖": [T: "helyzetjelző szálkereszt"] # 0x2316 (en: 'position indicator crosshairs', DeepL translation) + - "⌗": [T: "viewdata négyzet"] # 0x2317 (en: 'viewdata square', DeepL translation) + - "⌘": [T: "érdekes hely jel"] # 0x2318 (en: 'place of interest sign', DeepL translation) + - "⌙": [T: "fordított nem jel"] # 0x2319 (en: 'turned not sign', DeepL translation) + - "⌚": [T: "óra"] # 0x231a (en: 'watch', DeepL translation) + - "⌛": [T: "homokóra"] # 0x231b (en: 'hourglass', DeepL translation) + - "⌜": [T: "bal felső sarok"] # 0x231c (en: 'top left corner', DeepL translation) + - "⌝": [T: "jobb felső sarok"] # 0x231d (en: 'top right corner', DeepL translation) + - "⌞": [T: "bal alsó sarok"] # 0x231e (en: 'bottom left corner', DeepL translation) + - "⌟": [T: "jobb alsó sarok"] # 0x231f (en: 'bottom right corner', DeepL translation) + - "⌠": [T: "felső félintegrál"] # 0x2320 (en: 'top half integral', DeepL translation) + - "⌡": [T: "alsó félintegrál"] # 0x2321 (en: 'bottom half integral', DeepL translation) + - "⌢": [T: "homlokráncolás"] # 0x2322 (en: 'frown', DeepL translation) + - "⌣": [T: "mosoly"] # 0x2323 (en: 'smile', DeepL translation) + - "⌤": [T: "felfelé mutató nyílhegy két vízszintes sáv között"] # 0x2324 (en: 'up arrowhead between two horizontal bars', DeepL translation) + - "⌥": [T: "opciós billentyű"] # 0x2325 (en: 'option key', DeepL translation) + - "⌦": [T: "törlés jobbra"] # 0x2326 (en: 'erase to the right', DeepL translation) + - "⌧": [T: "x egy téglalap alakú négyzetben"] # 0x2327 (en: 'x in a rectangle box', DeepL translation) + - "⌨": [T: "billentyűzet"] # 0x2328 (en: 'keyboard', DeepL translation) + - "〈": [T: "balra mutató szögletes zárójel"] # 0x2329 (en: 'left pointing angle bracket', DeepL translation) + - "〉": [T: "jobbra mutató szögletes zárójel"] # 0x232a (en: 'right pointing angle bracket', DeepL translation) + - "⌫": [T: "törlés balra"] # 0x232b (en: 'erase to the left', DeepL translation) + - "⌬": [T: "benzolgyűrű"] # 0x232c (en: 'benzene ring', DeepL translation) + - "⌭": [T: "hengeresség"] # 0x232d (en: 'cylindricity', DeepL translation) + - "⌮": [T: "körkörös profil"] # 0x232e (en: 'all around profile', DeepL translation) + - "⌯": [T: "szimmetria"] # 0x232f (en: 'symmetry', DeepL translation) + - "⌰": [T: "teljes kifutás"] # 0x2330 (en: 'total runout', DeepL translation) + - "⌱": [T: "dimenzió eredete"] # 0x2331 (en: 'dimension origin', DeepL translation) + - "⌲": [T: "kúpos kúp"] # 0x2332 (en: 'conical taper', DeepL translation) + - "⌳": [T: "ferde"] # 0x2333 (en: 'slope', DeepL translation) + - "⌴": [T: "ellenző"] # 0x2334 (en: 'counterbore', DeepL translation) + - "⌵": [T: "süllyesztett"] # 0x2335 (en: 'countersink', DeepL translation) + - "⌶": [T: "apl i gerenda"] # 0x2336 (en: 'apl i beam', DeepL translation) + - "⌽": [T: "apl kör alakú keret"] # 0x233d (en: 'apl circle stile', DeepL translation) + - "⌿": [T: "apl perjel"] # 0x233f (DeepL translation) + - "⍰": [T: "ismeretlen doboz"] # 0x2370 (en: 'unknown box', DeepL translation) + - "⍼": [T: "derékszög lefelé cikcakkos nyíllal"] # 0x237c (en: 'right angle with down zigzag arrow', DeepL translation) + - "⎔": [T: "hatszög"] # 0x2394 (en: 'hexagon', DeepL translation) + - "⎕": [T: "doboz"] # 0x2395 (en: 'box', DeepL translation) + - "⎶": [T: "alsó szögletes zárójel felett felső szögletes zárójel"] # 0x23b6 (en: 'bottom square bracket over top square bracket', DeepL translation) + - "⏜": [T: "felső zárójel"] # 0x23dc (en: 'top paren', DeepL translation) + - "⏝": [T: "alsó zárójel"] # 0x23dd (en: 'bottom paren', DeepL translation) + - "⏞": [T: "felső zárójel"] # 0x23de (en: 'top brace', DeepL translation) + - "⏟": [T: "alsó zárójel"] # 0x23df (en: 'bottom brace', DeepL translation) + - "⏠": [T: "felső teknőspáncélos zárójel"] # 0x23e0 (en: 'top tortoise shell bracket', DeepL translation) + - "⏡": [T: "alsó teknőspáncélos zárójel"] # 0x23e1 (en: 'bottom tortoise shell bracket', DeepL translation) + - "⏢": [T: "fehér trapéz"] # 0x23e2 (en: 'white trapezium', DeepL translation) + - "⏣": [T: "benzolgyűrű körrel"] # 0x23e3 (en: 'benzene right with circle', DeepL translation) + - "⏤": [T: "egyenesség"] # 0x23e4 (en: 'straightness', DeepL translation) + - "⏥": [T: "laposság"] # 0x23e5 (en: 'flatness', DeepL translation) + - "⏦": # 0x23e6 + - SPELL: "ac" + - T: "jelenlegi" # (en: 'current', DeepL translation) + - "⏧": [T: "elektromos kereszteződés"] # 0x23e7 (en: 'electrical intersection', DeepL translation) + - "①-⑨": # 0x2460 - 0x2469 + - T: "bekarikázott" # (en: 'circled', DeepL translation) + - SPELL: "translate('.', '①②③④⑤⑥⑦⑧⑨', '123456789')" + - "⑩": [T: "bekarikázott tízes"] # 0x2469 (en: 'circled ten', DeepL translation) + - "⑪": [T: "bekarikázott tizenegyes"] # 0x246a (en: 'circled eleven', DeepL translation) + - "⑫": [T: "bekarikázott tizenkettes"] # 0x246b (en: 'circled twelve', DeepL translation) + - "⑬": [T: "bekarikázott tizenhármas"] # 0x246c (en: 'circled thirteen', DeepL translation) + - "⑭": [T: "bekarikázott tizennégyes"] # 0x246d (en: 'circled fourteen', DeepL translation) + - "⑮": [T: "bekarikázott tizenötös"] # 0x246e (en: 'circled fifteen', DeepL translation) + - "⑯": [T: "bekarikázott tizenhatos"] # 0x246f (en: 'circled sixteen', DeepL translation) + - "⑰": [T: "bekarikázott tizenhetes"] # 0x2470 (en: 'circled seventeen', DeepL translation) + - "⑱": [T: "bekarikázott tizenegyes"] # 0x2471 (en: 'circled eighteen', DeepL translation) + - "⑳": [T: "bekarikázott húszas"] # 0x2473 (en: 'circled twenty', DeepL translation) + - "⑴-⑼": # 0x2474 - 0x247d + - T: "zárójeles" # (en: 'parenthesized', DeepL translation) + - SPELL: "translate('.', '⑴⑵⑶⑷⑸⑹⑺⑻⑼', '123456789')" + - "⑽": [T: "zárójeles tízes"] # 0x247d (en: 'parenthesized ten', DeepL translation) + - "⑾": [T: "zárójeles tizenegyes"] # 0x247e (en: 'parenthesized eleven', DeepL translation) + - "⑿": [T: "zárójeles tizenkettes"] # 0x247f (en: 'parenthesized twelve', DeepL translation) + - "⒀": [T: "zárójeles tizenhármas"] # 0x2480 (en: 'parenthesized thirteen', DeepL translation) + - "⒁": [T: "zárójeles tizennégyes"] # 0x2481 (en: 'parenthesized fourteen', DeepL translation) + - "⒂": [T: "zárójeles tizenötös"] # 0x2482 (en: 'parenthesized fifteen', DeepL translation) + - "⒃": [T: "zárójeles tizenhatos"] # 0x2483 (en: 'parenthesized sixteen', DeepL translation) + - "⒄": [T: "zárójeles tizenhetes"] # 0x2484 (en: 'parenthesized seventeen', DeepL translation) + - "⒅": [T: "zárójeles tizennyolcas"] # 0x2485 (en: 'parenthesized eighteen', DeepL translation) + - "⒆": [T: "zárójeles tizenkilences"] # 0x2486 (en: 'parenthesized nineteen', DeepL translation) + - "⒇": [T: "zárójeles húszas"] # 0x2487 (en: 'parenthesized twenty', DeepL translation) + - "⒈-⒐": # 0x2488 - 0x2491 + - SPELL: "translate('.', '⒈⒉⒊⒋⒌⒍⒎⒏⒐', '123456789')" + - T: "ponttal" # (en: 'with period', DeepL translation) + - "⒑": [T: "tíz ponttal"] # 0x2491 (en: 'ten with period', DeepL translation) + - "⒒": [T: "tizenegy ponttal"] # 0x2492 (en: 'eleven with period', DeepL translation) + - "⒓": [T: "tizenkettő ponttal"] # 0x2493 (en: 'twelve with period', DeepL translation) + - "⒔": [T: "tizenhárom ponttal"] # 0x2494 (en: 'thirteen with period', DeepL translation) + - "⒕": [T: "tizennégy ponttal"] # 0x2495 (en: 'fourteen with period', DeepL translation) + - "⒖": [T: "tizenöt ponttal"] # 0x2496 (en: 'fifteen with period', DeepL translation) + - "⒗": [T: "tizenhat ponttal"] # 0x2497 (en: 'sixteen with period', DeepL translation) + - "⒘": [T: "tizenhét ponttal"] # 0x2498 (en: 'seventeen with period', DeepL translation) + - "⒙": [T: "tizennyolc ponttal"] # 0x2499 (en: 'eighteen with period', DeepL translation) + - "⒚": [T: "tizenkilenc ponttal"] # 0x249a (en: 'nineteen with period', DeepL translation) + - "⒛": [T: "húsz ponttal"] # 0x249b (en: 'twenty with period', DeepL translation) + - "⒜-⒵": # 0x249c - 0x24b5 + - T: "zárójeles" # (en: 'parenthesized', DeepL translation) + - SPELL: "translate('.', '⒜⒝⒞⒟⒠⒡⒢⒣⒤⒥⒦⒧⒨⒩⒪⒫⒬⒭⒮⒯⒰⒱⒲⒳⒴⒵', 'abcdefghijklmnopqrstuvwxyz')" + + - "Ⓐ-Ⓩ": # 0x24b6 - 0x24cf + - T: "bekarikázott" + - SPELL: "translate('.', 'ⒶⒷⒸⒹⒺⒻⒼⒽⒾⒿⓀⓁⓂⓃⓄⓅⓆⓇⓈⓉⓊⓋⓌⓍⓎⓏ', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "🅐-🅩": # 0x1f150 - 0x1f169 + - T: "fekete körrel jelölt" # (en: 'black circled', DeepL translation) + - SPELL: "translate('.', '🅐🅑🅒🅓🅔🅕🅖🅗🅘🅙🅚🅛🅜🅝🅞🅟🅠🅡🅢🅣🅤🅥🅦🅧🅨🅩', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "ⓐ-ⓩ": # 0x24d0 - 0x24e9 + - T: "bekarikázott" # (en: 'circled', DeepL translation) + - SPELL: "translate('.', 'ⓐⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜⓝⓞⓟⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩ', 'abcdefghijklmnopqrstuvwxyz')" + - "⓪": [T: "bekarikázott nulla"] # 0x24ea (en: 'circled zero', DeepL translation) + - "⓫": [T: "fekete kör alakú tizenegyes"] # 0x24eb (en: 'black circled eleven', DeepL translation) + - "⓬": [T: "fekete bekarikázott tizenkettő"] # 0x24ec (en: 'black circled twelve', DeepL translation) + - "⓭": [T: "fekete bekarikázott tizenhárom"] # 0x24ed (en: 'black circled thirteen', DeepL translation) + - "⓮": [T: "fekete bekarikázott tizennégy"] # 0x24ee (en: 'black circled fourteen', DeepL translation) + - "⓯": [T: "fekete bekarikázott tizenöt"] # 0x24ef (en: 'black circled fifteen', DeepL translation) + - "⓰": [T: "fekete bekarikázott tizenhat"] # 0x24f0 (en: 'black circled sixteen', DeepL translation) + - "⓱": [T: "fekete bekarikázott tizenhét"] # 0x24f1 (en: 'black circled seventeen', DeepL translation) + - "⓲": [T: "fekete karikázott tizenegyes"] # 0x24f2 (en: 'black circled eighteen', DeepL translation) + - "⓳": [T: "fekete bekarikázott tizenkilenc"] # 0x24f3 (en: 'black circled nineteen', DeepL translation) + - "⓴": [T: "fekete bekarikázott húszas"] # 0x24f4 (en: 'black circled twenty', DeepL translation) + - "⓵-⓽": # 0x24f5 - 0x24fe + - T: "dupla bekarikázott" # (en: 'double circled', DeepL translation) + - SPELL: "translate('.', '⓵⓶⓷⓸⓹⓺⓻⓼⓽', '123456789')" + - "⓾": [T: "dupla bekarikázott tízes"] # 0x24fe (en: 'double circled ten', DeepL translation) + - "⓿": [T: "fekete bekarikázott nulla"] # 0x24ff (en: 'black circled zero', DeepL translation) + - "■": [T: "fekete négyzet"] # 0x25a0 (en: 'black square', DeepL translation) + - "□": [T: "fehér négyzet"] # 0x25a1 (en: 'white square', DeepL translation) + - "▢": [T: "fehér négyzet lekerekített sarkokkal"] # 0x25a2 (en: 'white square with rounded corners', DeepL translation) + - "▣": [T: "fehér négyzet, amely kis fekete négyzetet tartalmaz"] # 0x25a3 (en: 'white square containing small black square', DeepL translation) + - "▤": [T: "négyzet vízszintes kitöltéssel"] # 0x25a4 (en: 'square with horizontal fill', DeepL translation) + - "▥": [T: "négyzet függőleges kitöltéssel"] # 0x25a5 (en: 'square with vertical fill', DeepL translation) + - "▦": [T: "négyzet merőleges keresztsraffozással"] # 0x25a6 (en: 'square with orthogonal crosshatch fill', DeepL translation) + - "▧": [T: "négyzet bal felső és jobb alsó kitöltéssel"] # 0x25a7 (en: 'square with upper left to lower right fill', DeepL translation) + - "▨": [T: "négyzet, jobb felső és bal alsó kitöltéssel"] # 0x25a8 (en: 'square with upper right to lower left fill', DeepL translation) + - "▩": [T: "négyzet átlós kereszthúzással kitöltve"] # 0x25a9 (en: 'square with diagonal crosshatch fill', DeepL translation) + - "▪": [T: "fekete kis négyzet"] # 0x25aa (en: 'black small square', DeepL translation) + - "▫": [T: "fehér kis négyzet"] # 0x25ab (en: 'white small square', DeepL translation) + - "▬": [T: "fekete téglalap"] # 0x25ac (en: 'black rectangle', DeepL translation) + - "▭": [T: "fehér téglalap"] # 0x25ad (en: 'white rectangle', DeepL translation) + - "▮": [T: "fekete függőleges téglalap"] # 0x25ae (en: 'black vertical rectangle', DeepL translation) + - "▯": [T: "fehér függőleges téglalap"] # 0x25af (en: 'white vertical rectangle', DeepL translation) + - "▰": [T: "fekete paralelogramma"] # 0x25b0 (en: 'black parallelogram', DeepL translation) + - "▱": [T: "fehér paralelogramma"] # 0x25b1 (en: 'white parallelogram', DeepL translation) + - "▲": [T: "fekete felfelé mutató háromszög"] # 0x25b2 (en: 'black up pointing triangle', DeepL translation) + - "△": [T: "háromszög"] # 0x25b3 (en: 'triangle', DeepL translation) + - "▴": [T: "fekete felfelé mutató kis háromszög"] # 0x25b4 (en: 'black up pointing small triangle', DeepL translation) + - "▵": [T: "fehér felfelé mutató kis háromszög"] # 0x25b5 (en: 'white up pointing small triangle', DeepL translation) + - "▶": [T: "fekete jobbra mutató háromszög"] # 0x25b6 (en: 'black right pointing triangle', DeepL translation) + - "▷": [T: "fehér jobbra mutató háromszög"] # 0x25b7 (en: 'white right pointing triangle', DeepL translation) + - "▸": [T: "fekete jobbra mutató kis háromszög"] # 0x25b8 (en: 'black right pointing small triangle', DeepL translation) + - "▹": [T: "fehér jobbra mutató kis háromszög"] # 0x25b9 (en: 'white right pointing small triangle', DeepL translation) + - "►": [T: "fekete jobbra mutató mutató"] # 0x25ba (en: 'black right pointing pointer', DeepL translation) + - "▻": [T: "fehér jobbra mutató mutató"] # 0x25bb (en: 'white right pointing pointer', DeepL translation) + - "▼": [T: "fekete lefelé mutató háromszög"] # 0x25bc (en: 'black down pointing triangle', DeepL translation) + - "▽": [T: "fehér lefelé mutató háromszög"] # 0x25bd (en: 'white down pointing triangle', DeepL translation) + - "▾": [T: "fekete lefelé mutató kis háromszög"] # 0x25be (en: 'black down pointing small triangle', DeepL translation) + - "▿": [T: "fehér lefelé mutató kis háromszög"] # 0x25bf (en: 'white down pointing small triangle', DeepL translation) + - "◀": [T: "fekete balra mutató háromszög"] # 0x25c0 (en: 'black left pointing triangle', DeepL translation) + - "◁": [T: "fehér balra mutató kis háromszög"] # 0x25c1 (en: 'white left pointing triangle', DeepL translation) + - "◂": [T: "fekete balra mutató kis háromszög"] # 0x25c2 (en: 'black left pointing small triangle', DeepL translation) + - "◃": [T: "fehér balra mutató kis háromszög"] # 0x25c3 (en: 'white left pointing small triangle', DeepL translation) + - "◄": [T: "fekete balra mutató mutató"] # 0x25c4 (en: 'black left pointing pointer', DeepL translation) + - "◅": [T: "fehér balra mutató mutató"] # 0x25c5 (en: 'white left pointing pointer', DeepL translation) + - "◆": [T: "fekete gyémánt"] # 0x25c6 (en: 'black diamond', DeepL translation) + - "◇": [T: "fehér rombusz"] # 0x25c7 (en: 'white diamond', DeepL translation) + - "◈": [T: "fehér rombusz, benne fekete kis rombusz"] # 0x25c8 (en: 'white diamond containing black small diamond', DeepL translation) + - "◉": [T: "halszem"] # 0x25c9 (en: 'fisheye', DeepL translation) + - "◊": [T: "rombusz"] # 0x25ca (en: 'lozenge', DeepL translation) + - "○": [T: "fehér kör"] # 0x25cb (en: 'white circle', DeepL translation) + - "◌": [T: "pontozott kör"] # 0x25cc (en: 'dotted circle', DeepL translation) + - "◍": [T: "kör függőleges kitöltéssel"] # 0x25cd (en: 'circle with vertical fill', DeepL translation) + - "◎": [T: "célpont"] # 0x25ce (DeepL translation) + - "●": [T: "fekete kör"] # 0x25cf (en: 'black circle', DeepL translation) + - "◐": [T: "kör, amelynek bal fele fekete"] # 0x25d0 (en: 'circle with left half black', DeepL translation) + - "◑": [T: "kör, amelynek jobb fele fekete"] # 0x25d1 (en: 'circle with right half black', DeepL translation) + - "◒": [T: "alsó felénél fekete kör"] # 0x25d2 (en: 'circle with lower half black', DeepL translation) + - "◓": [T: "felső felénél fekete kör"] # 0x25d3 (en: 'circle with upper half black', DeepL translation) + - "◔": [T: "kör, mej a jobb felső kvadránsnál fekete"] # 0x25d4 (en: 'circle with upper right quadrant black', DeepL translation) + - "◕": [T: "kör, amelyben a bal felső negyed kivételével minden fekete"] # 0x25d5 (en: 'circle with all but upper left quadrant black', DeepL translation) + - "◖": [T: "bal oldali fél fekete kör"] # 0x25d6 (en: 'left half black circle', DeepL translation) + - "◗": [T: "jobb felén fekete kör"] # 0x25d7 (en: 'right half black circle', DeepL translation) + - "◘": [T: "fordított felsorolásjel"] # 0x25d8 (en: 'inverse bullet', DeepL translation) + - "◙": [T: "inverz fehér kör"] # 0x25d9 (en: 'inverse white circle', DeepL translation) + - "◚": [T: "felső felén inverz fehér kör"] # 0x25da (en: 'upper half inverse white circle', DeepL translation) + - "◛": [T: "alsó felén inverz fehér kör"] # 0x25db (en: 'lower half inverse white circle', DeepL translation) + - "◜": [T: "bal felső kvadránsban kör alakú ív"] # 0x25dc (en: 'upper left quadrant circular arc', DeepL translation) + - "◝": [T: "jobb felső kvadránsban körív"] # 0x25dd (en: 'upper right quadrant circular arc', DeepL translation) + - "◞": [T: "jobb alsó kvadránsban körív"] # 0x25de (en: 'lower right quadrant circular arc', DeepL translation) + - "◟": [T: "bal alsó kvadránsban körív"] # 0x25df (en: 'lower left quadrant circular arc', DeepL translation) + - "◠": [T: "felső félkör"] # 0x25e0 (en: 'upper half circle', DeepL translation) + - "◡": [T: "alsó félkör"] # 0x25e1 (en: 'lower half circle', DeepL translation) + - "◢": [T: "fekete jobb alsó háromszög"] # 0x25e2 (en: 'black lower right triangle', DeepL translation) + - "◣": [T: "fekete bal alsó háromszög"] # 0x25e3 (en: 'black lower left triangle', DeepL translation) + - "◤": [T: "fekete bal felső háromszög"] # 0x25e4 (en: 'black upper left triangle', DeepL translation) + - "◥": [T: "fekete jobb felső háromszög"] # 0x25e5 (en: 'black upper right triangle', DeepL translation) + - "◦": [T: "kompozíció"] # 0x25e6 (en: 'composition', DeepL translation) + - "◧": [T: "bal felén fekete négyzet"] # 0x25e7 (en: 'square with left half black', DeepL translation) + - "◨": [T: "jobb felén fekete négyzet"] # 0x25e8 (en: 'square with right half black', DeepL translation) + - "◩": [T: "bal felső felén fekete négyzet"] # 0x25e9 (en: 'square with upper left half black', DeepL translation) + - "◪": [T: "jobb alsó felén fekete négyzet"] # 0x25ea (en: 'square with lower right half black', DeepL translation) + - "◫": [T: "fehér négyzet felezővonallal"] # 0x25eb (en: 'white square with bisecting line', DeepL translation) + - "◬": [T: "fehér felfelé mutató háromszög ponttal"] # 0x25ec (en: 'white up pointing triangle with dot', DeepL translation) + - "◭": [T: "bal felén fekete felfelé mutató háromszög"] # 0x25ed (en: 'up pointing triangle with left half black', DeepL translation) + - "◮": [T: "jobb felén fekete felfelé mutató háromszög"] # 0x25ee (en: 'up pointing triangle with right half black', DeepL translation) + - "◯": [T: "nagy kör"] # 0x25ef (en: 'large circle', DeepL translation) + - "◰": [T: "fehér négyzet bal felső negyeddel"] # 0x25f0 (en: 'white square with upper left quadrant', DeepL translation) + - "◱": [T: "fehér négyzet bal alsó negyeddel"] # 0x25f1 (en: 'white square with lower left quadrant', DeepL translation) + - "◲": [T: "fehér négyzet jobb alsó negyeddel"] # 0x25f2 (en: 'white square with lower right quadrant', DeepL translation) + - "◳": [T: "fehér négyzet jobb felső negyeddel"] # 0x25f3 (en: 'white square with upper right quadrant', DeepL translation) + - "◴": [T: "fehér kör a bal felső negyedben"] # 0x25f4 (en: 'white circle with upper left quadrant', DeepL translation) + - "◵": [T: "fehér kör a bal alsó negyedben"] # 0x25f5 (en: 'white circle with lower left quadrant', DeepL translation) + - "◶": [T: "fehér kör a jobb alsó negyedben"] # 0x25f6 (en: 'white circle with lower right quadrant', DeepL translation) + - "◷": [T: "fehér kör a jobb felső negyedben"] # 0x25f7 (en: 'white circle with upper right quadrant', DeepL translation) + - "◸": [T: "bal felső háromszög"] # 0x25f8 (en: 'upper left triangle', DeepL translation) + - "◹": [T: "jobb felső háromszög"] # 0x25f9 (en: 'upper right triangle', DeepL translation) + - "◺": [T: "bal alsó háromszög"] # 0x25fa (en: 'lower left triangle', DeepL translation) + - "◻": [T: "fehér közepes négyzet"] # 0x25fb (en: 'white medium square', DeepL translation) + - "◼": [T: "fekete közepes négyzet"] # 0x25fc (en: 'black medium square', DeepL translation) + - "◽": [T: "fehér közepes kis négyzet"] # 0x25fd (en: 'white medium small square', DeepL translation) + - "◾": [T: "fekete közepes kis négyzet"] # 0x25fe (en: 'black medium small square', DeepL translation) + - "◿": [T: "jobb alsó háromszög"] # 0x25ff (en: 'lower right triangle', DeepL translation) + - "★": [T: "fekete csillag"] # 0x2605 (en: 'black star', DeepL translation) + - "☆": [T: "fehér csillag"] # 0x2606 (en: 'white star', DeepL translation) + - "☉": [T: "nap"] # 0x2609 (en: 'sun', DeepL translation) + - "☌": [T: "összekapcsolás"] # 0x260c (en: 'conjunction', DeepL translation) + - "☒": [T: "x-szel jelölt szavazóurna"] # 0x2612 (en: 'ballot box with x', DeepL translation) + - "☽": [T: "növekvő hold"] # 0x263d (en: 'waxing moon', DeepL translation) + - "☾": [T: "fogyó hold"] # 0x263e (en: 'waning moon', DeepL translation) + - "☿": [T: "higany"] # 0x263f (en: 'mercury', DeepL translation) + - "♀": [T: "női"] # 0x2640 (en: 'female', DeepL translation) + - "♁": [T: "föld"] # 0x2641 (en: 'earth', DeepL translation) + - "♂": [T: "férfi"] # 0x2642 (en: 'male', DeepL translation) + - "♃": [T: "jupiter"] # 0x2643 (DeepL translation) + - "♄": [T: "szaturnusz"] # 0x2644 (en: 'saturn', DeepL translation) + - "♅": [T: "uránusz"] # 0x2645 (en: 'uranus', DeepL translation) + - "♆": [T: "neptun"] # 0x2646 (en: 'neptune', DeepL translation) + - "♇": [T: "plútó"] # 0x2647 (en: 'pluto', DeepL translation) + - "♈": [T: "kos"] # 0x2648 (en: 'aries', DeepL translation) + - "♉": [T: "bika"] # 0x2649 (DeepL translation) + - "♩": [T: "negyedhang"] # 0x2669 (en: 'quarter note', DeepL translation) + - "♭": [T: "lapos"] # 0x266d (en: 'flat', DeepL translation) + - "♮": [T: "természetes"] # 0x266e (en: 'natural', DeepL translation) + - "♯": [T: "éles"] # 0x266f (en: 'sharp', DeepL translation) + - "♠": [T: "fekete pikk szín"] # 0x2660 (en: 'black spade suit', DeepL translation) + - "♡": [T: "fehér szív szín"] # 0x2661 (en: 'white heart suit', DeepL translation) + - "♢": [T: "fehér színű rombusz"] # 0x2662 (en: 'white diamond suit', DeepL translation) + - "♣": [T: "fekete színű treff"] # 0x2663 (en: 'black club suit', DeepL translation) + - "♤": [T: "fehér színű pikk"] # 0x2664 (en: 'white spade suit', DeepL translation) + - "♥": [T: "fekete szívecske"] # 0x2665 (en: 'black heart suit', DeepL translation) + - "♦": [T: "fekete káró"] # 0x2666 (en: 'black diamond suit', DeepL translation) + - "♧": [T: "fehér színű treff"] # 0x2667 (en: 'white club suit', DeepL translation) + - "⚀": [T: "1. kockaoldal"] # 0x2680 (en: 'die face 1', DeepL translation) + - "⚁": [T: "2. kockaoldal"] # 0x2681 (en: 'die face 2', DeepL translation) + - "⚂": [T: "3. kockaoldal"] # 0x2682 (en: 'die face 3', DeepL translation) + - "⚃": [T: "4. kockaoldal"] # 0x2683 (en: 'die face 4', DeepL translation) + - "⚄": [T: "5. kockaoldal"] # 0x2684 (en: 'die face 5', DeepL translation) + - "⚅": [T: "6. kockaoldal"] # 0x2685 (en: 'die face 6', DeepL translation) + - "⚆": [T: "fehér kör jobbra ponttal"] # 0x2686 (en: 'white circle with dot right', DeepL translation) + - "⚇": [T: "fehér kör két ponttal"] # 0x2687 (en: 'white circle wiht two dots', DeepL translation) + - "⚈": [T: "fekete kör jobbra mutató ponttal"] # 0x2688 (en: 'black circle with dot right', DeepL translation) + - "⚉": [T: "fekete kör két ponttal"] # 0x2689 (en: 'black circle wiht two dots', DeepL translation) + - "⚪": [T: "közepes fehér kör"] # 0x26aa (en: 'medium white circle', DeepL translation) + - "⚫": [T: "közepes fekete kör"] # 0x26ab (en: 'medium black circle', DeepL translation) + - "⚬": [T: "közepes kis fehér kör"] # 0x26ac (en: 'medium small white circle', DeepL translation) + - "⚲": [T: "neutrális"] # 0x26b2 (en: 'neuter', DeepL translation) + - "✓": [T: "pipa"] # 0x2713 (en: 'check mark', DeepL translation) + - "✠": [T: "máltai kereszt"] # 0x2720 (en: 'maltese cross', DeepL translation) + - "✪": [T: "bekarikázott fehér csillag"] # 0x272a (en: 'circled white star', DeepL translation) + - "✶": [T: "hatágú fekete csillag"] # 0x2736 (en: 'six pionted black star', DeepL translation) + - "❨": [T: "közepes bal oldali zárójeles díszítés"] # 0x2768 (en: 'medium left parentheses ornament', DeepL translation) + - "❩": [T: "közepes jobb oldali zárójeles díszítés"] # 0x2769 (en: 'medium right parentheses ornament', DeepL translation) + - "❪": [T: "közepes lapos bal oldali zárójeles díszítés"] # 0x276a (en: 'medium flattened left parentheses ornament', DeepL translation) + - "❫": [T: "közepes lapos jobb oldali zárójeles díszítés"] # 0x276b (en: 'medium flattened right parentheses ornament', DeepL translation) + - "❬": [T: "közepes balra mutató szögletes zárójeles díszítés"] # 0x276c (en: 'medium left-pointing angle bracket ornament', DeepL translation) + - "❭": [T: "közepes jobbra mutató szögletes zárójeles díszítés"] # 0x276d (en: 'medium right-pointing angle bracket ornament', DeepL translation) + - "❮": [T: "nehéz balra mutató szögletes idézőjeles díszítés"] # 0x276e (en: 'heavy left-pointing angle quotation mark ornament', DeepL translation) + - "❯": [T: "nehéz, jobbra mutató szögletes idézőjeles díszítés"] # 0x276f (en: 'heavy right-pointing angle quotation mark ornament', DeepL translation) + - "❰": [T: "nehéz balra mutató szögletes zárójeles díszítés"] # 0x2770 (en: 'heavy left-pointing angle bracket ornament', DeepL translation) + - "❱": [T: "nehéz jobbra mutató szögletes zárójeles díszítés"] # 0x2771 (en: 'heavy right-pointing angle bracket ornament', DeepL translation) + - "❲": [T: "világos bal oldali teknőspáncél zárójeles díszítés"] # 0x2772 (en: 'light left tortoise shell bracket ornament', DeepL translation) + - "❳": [T: "világos jobb oldali teknőspáncél zárójeles díszítés"] # 0x2773 (en: 'light right tortoise shell bracket ornament', DeepL translation) + - "❴": [T: "közepes bal oldali zárójeles díszítés"] # 0x2774 (en: 'medium left brace ornament', DeepL translation) + - "❵": [T: "közepes jobb oldali zárójeles díszítés"] # 0x2775 (en: 'medium right brace ornament', DeepL translation) + - "❶": [T: "fekete bekarikázott egy"] # 0x2776 (en: 'black circled one', DeepL translation) + - "❷": [T: "fekete bekarikázott kettő"] # 0x2777 (en: 'black circled two', DeepL translation) + - "❸": [T: "fekete bekarikázott három"] # 0x2778 (en: 'black circled three', DeepL translation) + - "❹": [T: "fekete bekarikázott négy"] # 0x2779 (en: 'black circled four', DeepL translation) + - "❺": [T: "fekete bekarikázott öt"] # 0x277a (en: 'black circled five', DeepL translation) + - "❻": [T: "fekete bekarikázott hat"] # 0x277b (en: 'black circled six', DeepL translation) + - "❼": [T: "fekete bekarikázott hét"] # 0x277c (en: 'black circled seven', DeepL translation) + - "❽": [T: "fekete bekarikázott nyolc"] # 0x277d (en: 'black circled eight', DeepL translation) + - "❾": [T: "fekete bekarikázott kilenc"] # 0x277e (en: 'black circled nine', DeepL translation) + - "❿": [T: "fekete bekarikázott tíz"] # 0x277f (en: 'black circled ten', DeepL translation) + - "➀": [T: "bekarikázott talpatlan egy"] # 0x2780 (en: 'circled sans serif one', DeepL translation) + - "➁": [T: "bekarikázott talpatlan kettő"] # 0x2781 (en: 'circled sans serif two', DeepL translation) + - "➂": [T: "bekarikázott talpatlan három"] # 0x2782 (en: 'circled sans serif three', DeepL translation) + - "➃": [T: "bekarikázott talpatlan négy"] # 0x2783 (en: 'circled sans serif four', DeepL translation) + - "➄": [T: "bekarikázott talpatlan öt"] # 0x2784 (en: 'circled sans serif five', DeepL translation) + - "➅": [T: "bekarikázott talpatlan hat"] # 0x2785 (en: 'circled sans serif six', DeepL translation) + - "➆": [T: "bekarikázott talpatlan hét"] # 0x2786 (en: 'circled sans serif seven', DeepL translation) + - "➇": [T: "bekarikázott talpatlan nyolc"] # 0x2787 (en: 'circled sans serif eight', DeepL translation) + - "➈": [T: "bekarikázott talpatlan kilenc"] # 0x2788 (en: 'circled sans serif nine', DeepL translation) + - "➉": [T: "bekarikázott talpatlan tíz"] # 0x2789 (en: 'circled sans serif ten', DeepL translation) + - "➊": [T: "fekete bekarikázott talpatlan egy"] # 0x278a (en: 'black circled sans serif one', DeepL translation) + - "➋": [T: "fekete bekarikázott talpatlan ketkettő"] # 0x278b (en: 'black circled sans serif two', DeepL translation) + - "➌": [T: "fekete bekarikázott talpatlan három"] # 0x278c (en: 'black circled sans serif three', DeepL translation) + - "➍": [T: "fekete bekarikázott talpatlan négy"] # 0x278d (en: 'black circled sans serif four', DeepL translation) + - "➎": [T: "fekete bekarikázott talpatlan öt"] # 0x278e (en: 'black circled sans serif five', DeepL translation) + - "➏": [T: "fekete bekarikázott talpatlan hat"] # 0x278f (en: 'black circled sans serif six', DeepL translation) + - "➐": [T: "fekete bekarikázott talpatlan hét"] # 0x2790 (en: 'black circled sans serif seven', DeepL translation) + - "➑": [T: "fekete bekarikázott talpatlan nyolc"] # 0x2791 (en: 'black circled sans serif eight', DeepL translation) + - "➒": [T: "fekete bekarikázott talpatlan kilenc"] # 0x2792 (en: 'black circled sans serif nine', DeepL translation) + - "➓": [T: "fekete bekarikázott talpatlan tíz"] # 0x2793 (en: 'black circled sans serif ten', DeepL translation) + - "➔": [T: "nehéz, széles hegyű jobbra mutató nyíl"] # 0x2794 (en: 'heavy wide-headed right arrow', DeepL translation) + - "➕": [T: "nehéz plusz jel"] # 0x2795 (en: 'heavy plus sign', DeepL translation) + - "➖": [T: "nehéz mínusz jel"] # 0x2796 (en: 'heavy minus sign', DeepL translation) + - "➗": [T: "nehéz osztásjel"] # 0x2797 (en: 'heavy division sign', DeepL translation) + - "➘": [T: "nehéz délkeleti nyíl"] # 0x2798 (en: 'heavy south east arrow', DeepL translation) + - "➙": [T: "nehéz jobbra mutató nyíl"] # 0x2799 (en: 'heavy right arrow', DeepL translation) + - "➚": [T: "nehéz északkeleti nyíl"] # 0x279a (en: 'heavy north east arrow', DeepL translation) + - "➛": [T: "vázlatpont, jobbra nyíl"] # 0x279b (en: 'drafting point right arrow', DeepL translation) + - "➜": [T: "nehéz, lekerekített hegyű jobbra mutató nyíl"] # 0x279c (en: 'heavy round-tipped right arrow', DeepL translation) + - "➝": [T: "háromszög fejű jobbra mutató nyíl"] # 0x279d (en: 'triangle-headed right arrow', DeepL translation) + - "➞": [T: "nagy háromszög fejű jobbra mutató nyíl"] # 0x279e (en: 'heavy triangle-headed right arrow', DeepL translation) + - "➟": [T: "szaggatott háromszögfejű jobbra mutató nyíl"] # 0x279f (en: 'dashed triangle-headed right arrow', DeepL translation) + - "➠": [T: "súlyos szaggatott háromszögfejű jobbra mutató nyíl"] # 0x27a0 (en: 'heavy dashed triangle-headed right arrow', DeepL translation) + - "➡": [T: "fekete jobbra mutató nyíl"] # 0x27a1 (en: 'black right arrow', DeepL translation) + - "➢": [T: "három d felső megvilágított jobbra mutató nyíl"] # 0x27a2 (en: 'three d top lighted right arrow', DeepL translation) + - "➣": [T: "három d alsó megvilágított jobbra mutató nyíl"] # 0x27a3 (en: 'three d bottom lighted right arrow', DeepL translation) + - "➤": [T: "fekete jobbra mutató nyílhegy"] # 0x27a4 (en: 'black right arrowhead', DeepL translation) + - "➥": [T: "nehéz fekete ívelt lefelé és jobbra mutató nyíl"] # 0x27a5 (en: 'heavy black curved down and right arrow', DeepL translation) + - "➦": [T: "nehéz fekete ívelt felfelé és jobbra mutató nyíl"] # 0x27a6 (en: 'heavy black curved up and right arrow', DeepL translation) + - "➧": [T: "guggoló fekete jobbra nyíl"] # 0x27a7 (en: 'squat black right arrow', DeepL translation) + - "➨": [T: "nehéz, homorú hegyű fekete jobbra mutató nyíl"] # 0x27a8 (en: 'heavy concave-pointed black right arrow', DeepL translation) + - "➩": [T: "jobbra árnyékolt fehér jobbra mutató nyíl"] # 0x27a9 (en: 'right-shaded white right arrow', DeepL translation) + - "➪": [T: "balra árnyékolt fehér jobbra mutató nyíl"] # 0x27aa (en: 'left-shaded white right arrow', DeepL translation) + - "➫": [T: "hátrafelé döntött, árnyékolt fehér jobbra mutató nyíl"] # 0x27ab (en: 'back-tilted shadowed white right arrow', DeepL translation) + - "➬": [T: "előrefelé döntött, árnyékolt fehér jobbra mutató nyíl"] # 0x27ac (en: 'front-tilted shadowed white right arrow', DeepL translation) + - "➭": [T: "vastag jobb alsó sarokban árnyékolt fehér jobbra mutató nyíl"] # 0x27ad (en: 'heavy lower right-shadowed white right arrow', DeepL translation) + - "➮": [T: "vastag jobb felső sarokban árnyékolt fehér jobbra mutató nyíl"] # 0x27ae (en: 'heavy upper right-shadowed white right arrow', DeepL translation) + - "➯": [T: "bevágott jobb alsó sarok - árnyékolt fehér jobbra mutató nyíl"] # 0x27af (en: 'notched lower right-shadowed white right arrow', DeepL translation) + - "➱": [T: "bevágott jobb felső sarok-árnyékolt fehér jobbra mutató nyíl"] # 0x27b1 (en: 'notched upper right-shadowed white right arrow', DeepL translation) + - "➲": [T: "bekarikázott vastag fehér jobbra mutató nyíl"] # 0x27b2 (en: 'circled heavy white right arrow', DeepL translation) + - "➳": [T: "fehér tollas jobbra mutató nyíl"] # 0x27b3 (en: 'white-feathered right arrow', DeepL translation) + - "➴": [T: "fekete tollas délkeleti nyíl"] # 0x27b4 (en: 'black-feathered south east arrow', DeepL translation) + - "➵": [T: "fekete tollas jobbra mutató nyíl"] # 0x27b5 (en: 'black-feathered right arrow', DeepL translation) + - "➶": [T: "fekete tollas északkeleti nyíl"] # 0x27b6 (en: 'black-feathered north east arrow', DeepL translation) + - "➷": [T: "vastag, fekete tollas délkeleti nyíl"] # 0x27b7 (en: 'heavy black-feathered south east arrow', DeepL translation) + - "➸": [T: "vastag, fekete tollas jobbra mutató nyíl"] # 0x27b8 (en: 'heavy black-feathered right arrow', DeepL translation) + - "➹": [T: "vastag, fekete tollas északkeleti nyíl"] # 0x27b9 (en: 'heavy black-feathered north east arrow', DeepL translation) + - "➺": [T: "könnycsepp alakú szöges jobbra mutató nyíl"] # 0x27ba (en: 'teradrop-barbed right arrow', DeepL translation) + - "➻": [T: "nehéz, könnycsepp alakú jobbra mutató nyíl"] # 0x27bb (en: 'heavy teardrop-shanked right arrow', DeepL translation) + - "➼": [T: "ék alakú jobbra mutató nyíl"] # 0x27bc (en: 'wedge-tailed right arrow', DeepL translation) + - "➽": [T: "nehéz, ék alakú jobbra mutató nyíl"] # 0x27bd (en: 'heavy wedge-tailed right arrow', DeepL translation) + - "➾": [T: "nyitott körvonalú jobbra mutató nyíl"] # 0x27be (en: 'open-outlined right arrow', DeepL translation) + - "⟀": [T: "háromdimenziós szög"] # 0x27c0 (en: 'three dimensional angle', DeepL translation) + - "⟁": [T: "fehér háromszög, benne egy kis fehér háromszög"] # 0x27c1 (en: 'white triangle containing small white triangle', DeepL translation) + - "⟂": # 0x27c2 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "merőleges" # (en: 'perpendicular to', DeepL translation) + - "⟃": # 0x27c3 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "nyitott részhalmaza ennek:" # (en: 'an open subset of', DeepL translation) + - "⟄": # 0x27c4 + - test: + if: "$Verbosity!='Terse'" + then: [T: "a(z)"] # (en: 'is', DeepL translation) + - T: "egy nyitott szuperhalmaza ennek:" # (en: 'an open superset of', DeepL translation) + - "⟅": [T: "bal oldali S alakú zsákelválasztó"] # 0x27c5 (en: 'left s-shaped bag delimiter', DeepL translation) + - "⟆": [T: "jobb oldali S alakú zsákelválasztó"] # 0x27c6 (en: 'right s-shaped bag delimiter', DeepL translation) + - "⟇": [T: "vagy ponttal belül"] # 0x27c7 (en: 'or with dot inside', DeepL translation) + - "⟈": [T: "fordított solidus megelőző részhalmaz"] # 0x27c8 (en: 'reverse solidus preceding subset', DeepL translation) + - "⟉": [T: "solidust megelőző szuperhalmaz"] # 0x27c9 (en: 'superset preceding solidus', DeepL translation) + - "⟊": [T: "függőleges sáv vízszintes vonallal"] # 0x27ca (en: 'vertical bar with horizontal stroke', DeepL translation) + - "⟋": [T: "matematikai emelkedő átló"] # 0x27cb (en: 'mathematical rising diagonal', DeepL translation) + - "⟌": [T: "hosszú osztás"] # 0x27cc (en: 'long division', DeepL translation) + - "⟍": [T: "matematikai zuhanó átló"] # 0x27cd (en: 'mathematical falling diagonal', DeepL translation) + - "⟎": [T: "négyzet alakú logikai és"] # 0x27ce (en: 'squared logical and', DeepL translation) + - "⟏": [T: "négyzet alakú logikai vagy"] # 0x27cf (en: 'squared logical or', DeepL translation) + - "⟐": [T: "fehér rombusz középen lévő ponttal"] # 0x27d0 (en: 'white diamond with centered dot', DeepL translation) + - "⟑": [T: "és ponttal"] # 0x27d1 (en: 'and with dot', DeepL translation) + - "⟒": [T: "megnyíló elem"] # 0x27d2 (en: 'element of opening up', DeepL translation) + - "⟓": [T: "jobb alsó sarokban pont"] # 0x27d3 (en: 'lower right corner with dot', DeepL translation) + - "⟔": [T: "bal felső sarokban pont"] # 0x27d4 (en: 'upper left corner with dot', DeepL translation) + - "⟕": [T: "bal külső csatlakozás"] # 0x27d5 (en: 'left outer join', DeepL translation) + - "⟖": [T: "jobb külső csatlakozás"] # 0x27d6 (en: 'right outer join', DeepL translation) + - "⟗": [T: "teljes külső csatlakozás"] # 0x27d7 (en: 'full outer join', DeepL translation) + - "⟘": [T: "nagy felfelé mutató szög"] # 0x27d8 (en: 'large up tack', DeepL translation) + - "⟙": [T: "nagy lefelé mutató szög"] # 0x27d9 (en: 'large down tack', DeepL translation) + - "⟚": [T: "bal és jobb oldali kettős fordulópont"] # 0x27da (en: 'left and right double turnstile', DeepL translation) + - "⟛": [T: "bal és jobb oldali tüske"] # 0x27db (en: 'left and right tack', DeepL translation) + - "⟜": [T: "bal oldali multitérkép"] # 0x27dc (en: 'left multimap', DeepL translation) + - "⟝": [T: "hosszú jobb oldali szög"] # 0x27dd (en: 'long right tack', DeepL translation) + - "⟞": [T: "hosszú bal oldali szög"] # 0x27de (en: 'long left tack', DeepL translation) + - "⟟": [T: "felfelé mutató szög, fölötte körrel"] # 0x27df (en: 'up tack with circle above', DeepL translation) + - "⟠": [T: "rombusz, osztott vízszintes vonallal"] # 0x27e0 (en: 'lozenge divided by horizontal rule', DeepL translation) + - "⟡": [T: "fehér homorú oldalú rombusz"] # 0x27e1 (en: 'white concave sided diamond', DeepL translation) + - "⟢": [T: "fehér homorú oldalú rombusz bal oldali pipával"] # 0x27e2 (en: 'white concave sided diamond with left tick', DeepL translation) + - "⟣": [T: "fehér homorú oldalú rombusz jobb oldali pipával"] # 0x27e3 (en: 'white concave sided diamond with right tick', DeepL translation) + - "⟤": [T: "fehér négyzet bal oldali pipával"] # 0x27e4 (en: 'white square with left tick', DeepL translation) + - "⟥": [T: "fehér négyzet jobb oldali pipával"] # 0x27e5 (en: 'white square with right tick', DeepL translation) + - "⟦": [T: "bal oldali fehér szögletes zárójel"] # 0x27e6 (en: 'left white square bracket', DeepL translation) + - "⟧": [T: "jobb oldali fehér szögletes zárójel"] # 0x27e7 (en: 'right white square bracket', DeepL translation) + - "⟨": [T: "bal szögletes zárójel"] # 0x27e8 (en: 'left angle bracket', DeepL translation) + - "⟩": [T: "jobb szögletes zárójel"] # 0x27e9 (en: 'right angle bracket', DeepL translation) + - "⟪": [T: "bal dupla szögletes zárójel"] # 0x27ea (en: 'left double angle bracket', DeepL translation) + - "⟫": [T: "jobb dupla szögletes zárójel"] # 0x27eb (en: 'right double angle bracket', DeepL translation) + - "⟬": [T: "bal oldali fehér teknőspáncélos zárójel"] # 0x27ec (en: 'left white tortoise shell bracket', DeepL translation) + - "⟭": [T: "jobb oldali fehér teknőspáncélos zárójel"] # 0x27ed (en: 'right white tortoise shell bracket', DeepL translation) + - "⟮": [T: "bal oldali lapos zárójel"] # 0x27ee (en: 'left flattened parenthesis', DeepL translation) + - "⟯": [T: "jobb oldali lapos zárójel"] # 0x27ef (en: 'right flattened parenthesis', DeepL translation) + - "⟰": [T: "felfelé mutató négyszeres nyíl"] # 0x27f0 (en: 'up quadruple arrow', DeepL translation) + - "⟱": [T: "lefelé mutató négyszeres nyíl"] # 0x27f1 (en: 'down quadruple arrow', DeepL translation) + - "⟲": [T: "az óramutató járásával ellentétes irányú, réses kör alakú nyíl"] # 0x27f2 (en: 'anticlockwise gapped circle arrow', DeepL translation) + - "⟳": [T: "az óramutató járásával megegyező irányú, réses kör alakú nyíl"] # 0x27f3 (en: 'clockwise gapped circle arrow', DeepL translation) + - "⟴": [T: "jobbra nyíl bekarikázott plusszal"] # 0x27f4 (en: 'right arrow with circled plus', DeepL translation) + - "⟵": [T: "hosszú balra nyíl"] # 0x27f5 (en: 'long left arrow', DeepL translation) + - "⟶": [T: "hosszú jobbra nyíl"] # 0x27f6 (en: 'long right arrow', DeepL translation) + - "⟷": [T: "hosszú balra jobbra nyíl"] # 0x27f7 (en: 'long left right arrow', DeepL translation) + - "⟸": [T: "hosszú bal oldali kettős nyíl"] # 0x27f8 (en: 'long left double arrow', DeepL translation) + - "⟹": [T: "implikálja"] # 0x27f9 (en: 'implies', DeepL translation) + - "⟺": [T: "ha, és csak ha"] # 0x27fa (en: 'if and only if', DeepL translation) + - "⟻": [T: "hosszú, balra mutató nyíl a sávból"] # 0x27fb (en: 'long left arrow from bar', DeepL translation) + - "⟼": [T: "hosszú, jobbra mutató nyíl a sávból"] # 0x27fc (en: 'long right arrow from bar', DeepL translation) + - "⟽": [T: "hosszú, bal kettős nyíl a sávból"] # 0x27fd (en: 'long left double arrow from bar', DeepL translation) + - "⟾": [T: "hosszú, jobb kettős nyíl a sávból"] # 0x27fe (en: 'long right double arrow from bar', DeepL translation) + - "⟿": [T: "hosszú jobb oldali szaggatott nyíl"] # 0x27ff (en: 'long right squiggle arrow', DeepL translation) + - "⤀": [T: "jobb oldali kétfejű nyíl függőleges vonallal"] # 0x2900 (en: 'right two headed arrow with vertical stroke', DeepL translation) + - "⤁": [T: "jobb oldali kétfejű nyíl dupla függőleges vonallal"] # 0x2901 (en: 'right two headed arrow with double vertical stroke', DeepL translation) + - "⤂": [T: "bal kettős nyíl függőleges vonallal"] # 0x2902 (en: 'left double arrow with vertical stroke', DeepL translation) + - "⤃": [T: "jobb oldali kétfejű nyíl függőleges vonallal"] # 0x2903 (en: 'right double arrow with vertical stroke', DeepL translation) + - "⤄": [T: "balra jobbra kettős nyíl függőleges vonallal"] # 0x2904 (en: 'left right double arrow with vertical stroke', DeepL translation) + - "⤅": [T: "jobbra mutató kétirányú nyíl a sávtól"] # 0x2905 (en: 'right two headed arrow from bar', DeepL translation) + - "⤆": [T: "balra mutató kettős nyíl a sávból"] # 0x2906 (en: 'left double arrow from bar', DeepL translation) + - "⤇": [T: "jobbra mutató kettős nyíl a sávból"] # 0x2907 (en: 'right double arrow from bar', DeepL translation) + - "⤈": [T: "lefelé mutató nyíl vízszintes vonallal"] # 0x2908 (en: 'down arrow with horizontal stroke', DeepL translation) + - "⤉": [T: "felfelé mutató nyíl vízszintes vonallal"] # 0x2909 (en: 'up arrow with horizontal stroke', DeepL translation) + - "⤊": [T: "hármas felfelé nyíl"] # 0x290a (en: 'up triple arrow', DeepL translation) + - "⤋": [T: "hármas lefelé nyíl"] # 0x290b (en: 'down triple arrow', DeepL translation) + - "⤌": [T: "bal oldali kettős kötőjeles nyíl"] # 0x290c (en: 'left double dash arrow', DeepL translation) + - "⤍": [T: "jobb oldali kettős kötőjeles nyíl"] # 0x290d (en: 'right double dash arrow', DeepL translation) + - "⤎": [T: "bal oldali hármas kötőjeles nyíl"] # 0x290e (en: 'left triple dash arrow', DeepL translation) + - "⤏": [T: "jobb oldali hármas kötőjeles nyíl"] # 0x290f (en: 'right triple dash arrow', DeepL translation) + - "⤐": [T: "jobb kétfejű hármas kötőjeles nyíl"] # 0x2910 (en: 'right two headed triple dash arrow', DeepL translation) + - "⤑": [T: "jobbra nyíl szaggatott szárral"] # 0x2911 (en: 'right arrow with dotted stem', DeepL translation) + - "⤒": [T: "felfelé mutató nyíl a sávhoz"] # 0x2912 (en: 'up arrow to bar', DeepL translation) + - "⤓": [T: "lefelé mutató nyíl a sávhoz"] # 0x2913 (en: 'down arrow to bar', DeepL translation) + - "⤔": [T: "jobbra mutató nyíl farokkal és függőleges vonallal"] # 0x2914 (en: 'right arrow with tail and vertical stroke', DeepL translation) + - "⤕": [T: "jobbra mutató nyíl farokkal és dupla függőleges vonallal"] # 0x2915 (en: 'right arrow with tail and double vertical stroke', DeepL translation) + - "⤖": [T: "jobb oldali kétfejű nyíl farokkal"] # 0x2916 (en: 'right two headed arrow with tail', DeepL translation) + - "⤗": [T: "jobb oldali kétfejű nyíl, farokkal, függőleges vonallal"] # 0x2917 (en: 'right two headed arrow with tail with vertical stroke', DeepL translation) + - "⤘": [T: "jobb oldali kétfejű nyíl, farokkal, dupla függőleges vonallal"] # 0x2918 (en: 'right two headed arrow with tail with double vertical stroke', DeepL translation) + - "⤙": [T: "balra nyíl farokkal"] # 0x2919 (en: 'left arrow tail', DeepL translation) + - "⤚": [T: "jobbra nyíl farokkal"] # 0x291a (en: 'right arrow tail', DeepL translation) + - "⤛": [T: "bal kettős nyíl farokkal"] # 0x291b (en: 'left double arrow tail', DeepL translation) + - "⤜": [T: "jobb kettős nyíl farokkal"] # 0x291c (en: 'right double arrow tail', DeepL translation) + - "⤝": [T: "balra mutató nyíl a kitöltött rombuszhoz"] # 0x291d (en: 'left arrow to filled diamond', DeepL translation) + - "⤞": [T: "jobbra mutató nyíl a kitöltött rombuszhoz"] # 0x291e (en: 'right arrow to filled diamond', DeepL translation) + - "⤟": [T: "balra mutató nyíl a sávtól a kitöltött rombuszig"] # 0x291f (en: 'left arrow from bar to filled diamond', DeepL translation) + - "⤠": [T: "jobbra mutató nyíl a sávtól a kitöltött rombuszig"] # 0x2920 (en: 'right arrow from bar to filled diamond', DeepL translation) + - "⤡": [T: "északnyugati és délkeleti nyíl"] # 0x2921 (en: 'north west and south east arrow', DeepL translation) + - "⤢": [T: "északkeleti és délnyugati nyíl"] # 0x2922 (en: 'north east and south west arrow', DeepL translation) + - "⤣": [T: "északnyugati nyíl horoggal"] # 0x2923 (en: 'north west arrow with hook', DeepL translation) + - "⤤": [T: "északkeleti nyíl horoggal"] # 0x2924 (en: 'north east arrow with hook', DeepL translation) + - "⤥": [T: "délkeleti nyíl horoggal"] # 0x2925 (en: 'south east arrow with hook', DeepL translation) + - "⤦": [T: "délnyugati nyíl horoggal"] # 0x2926 (en: 'south west arrow with hook', DeepL translation) + - "⤧": [T: "északnyugati nyíl és északkeleti nyíl"] # 0x2927 (en: 'north west arrow and north east arrow', DeepL translation) + - "⤨": [T: "északkeleti nyíl és délkeleti nyíl"] # 0x2928 (en: 'north east arrow and south east arrow', DeepL translation) + - "⤩": [T: "délkeleti nyíl és délnyugati nyíl"] # 0x2929 (en: 'south east arrow and south west arrow', DeepL translation) + - "⤪": [T: "délnyugati nyíl és északnyugati nyíl"] # 0x292a (en: 'south west arrow and north west arrow', DeepL translation) + - "⤫": [T: "emelkedő átló keresztezi a csökkenő átlót"] # 0x292b (en: 'rising diagonal crossing falling diagonal', DeepL translation) + - "⤬": [T: "csökkenő átló keresztezi az emelkedő átlót"] # 0x292c (en: 'falling diagonal crossing rising diagonal', DeepL translation) + - "⤭": [T: "délkeleti nyíl keresztezi az északkeleti nyilat"] # 0x292d (en: 'south east arrow crossing north east arrow', DeepL translation) + - "⤮": [T: "északkeleti nyíl keresztezi a délkeleti nyilat"] # 0x292e (en: 'north east arrow crossing south east arrow', DeepL translation) + - "⤯": [T: "zuhanó átlót keresztező északkeleti nyíl"] # 0x292f (en: 'falling diagonal crossing north east arrow', DeepL translation) + - "⤰": [T: "emelkedő átlót keresztező délkeleti nyíl"] # 0x2930 (en: 'rising diagonal crossing south east arrow', DeepL translation) + - "⤱": [T: "északkeleti nyíl keresztezi az északnyugati nyilat"] # 0x2931 (en: 'north east arrow crossing north west arrow', DeepL translation) + - "⤲": [T: "északnyugati nyilat keresztezi az északkeleti nyilat"] # 0x2932 (en: 'north west arrow crossing north east arrow', DeepL translation) + - "⤳": [T: "közvetlenül jobbra mutató hullámzó nyíl"] # 0x2933 (en: 'wave arrow pointing directly right', DeepL translation) + - "⤴": [T: "jobbra mutató, majd felfelé ívelő nyíl"] # 0x2934 (en: 'arrow pointing right then curving up', DeepL translation) + - "⤵": [T: "jobbra mutató, majd lefelé ívelő nyíl"] # 0x2935 (en: 'arrow pointing right then curving down', DeepL translation) + - "⤶": [T: "lefelé mutató, majd balra ívelő nyíl"] # 0x2936 (en: 'arrow pointing down then curving left', DeepL translation) + - "⤷": [T: "lefelé mutató, majd jobbra ívelő nyíl"] # 0x2937 (en: 'arrow pointing down then curving right', DeepL translation) + - "⤸": [T: "az óramutató járásával megegyező irányban, jobb oldalsó íves jobb oldali nyíl"] # 0x2938 (en: 'right side arc clockwise arrow', DeepL translation) + - "⤹": [T: "bal oldali íves, az óramutató járásával ellentétes irányú nyíl"] # 0x2939 (en: 'left side arc anticlockwise arrow', DeepL translation) + - "⤺": [T: "felső íves, az óramutató járásával ellentétes irányú nyíl"] # 0x293a (en: 'top arc anticlockwise arrow', DeepL translation) + - "⤻": [T: "alsó íves, az óramutató járásával ellentétes irányú nyíl"] # 0x293b (en: 'bottom arc anticlockwise arrow', DeepL translation) + - "⤼": [T: "felső íves óramutató járásával megegyező irányú nyíl mínuszokkal"] # 0x293c (en: 'top arc clockwise arrow with minus', DeepL translation) + - "⤽": [T: "felső íves az óramutató járásával ellentétes irányú nyíl plusszal"] # 0x293d (en: 'top arc anticlockwise arrow with plus', DeepL translation) + - "⤾": [T: "jobb alsó félköríves, az óramutató járásával megegyező irányú nyíl"] # 0x293e (en: 'lower right semicircular clockwise arrow', DeepL translation) + - "⤿": [T: "balra lent félköríves, az óramutató járásával ellentétes irányú nyíl"] # 0x293f (en: 'lower left semicircular anticlockwise arrow', DeepL translation) + - "⥀": [T: "az óramutató járásával ellentétes irányú zárt kör alakú nyíl"] # 0x2940 (en: 'anticlockwise closed circle arrow', DeepL translation) + - "⥁": [T: "az óramutató járásával megegyező irányú zárt kör alakú nyíl"] # 0x2941 (en: 'clockwise closed circle arrow', DeepL translation) + - "⥂": [T: "jobb nyíl rövid bal nyíl felett"] # 0x2942 (en: 'right arrow above short left arrow', DeepL translation) + - "⥃": [T: "bal nyíl rövid jobb nyíl felett"] # 0x2943 (en: 'left arrow above short right arrow', DeepL translation) + - "⥄": [T: "rövid jobb nyíl a bal nyíl felett"] # 0x2944 (en: 'short right arrow above left arrow', DeepL translation) + - "⥅": [T: "jobbra mutató nyíl, alul plusszal"] # 0x2945 (en: 'right arrow with plus below', DeepL translation) + - "⥆": [T: "balra mutató nyíl, alul plusszal"] # 0x2946 (en: 'left arrow with plus below', DeepL translation) + - "⥇": [T: "jobbra mutató nyíl az x-en keresztül"] # 0x2947 (en: 'right arrow through x', DeepL translation) + - "⥈": [T: "balra jobbra nyíl a körön keresztül"] # 0x2948 (en: 'left right arrow through circle', DeepL translation) + - "⥉": [T: "körből felfelé mutató kétágú nyíl"] # 0x2949 (en: 'up two headed arrow from circle', DeepL translation) + - "⥊": [T: "bal horgas felfelé jobb horgas lefelé szigony"] # 0x294a (en: 'left barb up right barb down harpoon', DeepL translation) + - "⥋": [T: "bal horgas lefelé jobb horgas felfelé szigony"] # 0x294b (en: 'left barb down right barb up harpoon', DeepL translation) + - "⥌": [T: "fel horgas jobbra le horgas balra szigony"] # 0x294c (en: 'up barb right down barb left harpoon', DeepL translation) + - "⥍": [T: "fel horgas balra le horgas jobbra szigony"] # 0x294d (en: 'up barb left down barb right harpoon', DeepL translation) + - "⥎": [T: "bal horgas felfelé jobb horgas felfelé szigony"] # 0x294e (en: 'left barb up right barb up harpoon', DeepL translation) + - "⥏": [T: "fel horgas jobbra le horgas jobbra szigony"] # 0x294f (en: 'up barb right down barb right harpoon', DeepL translation) + - "⥐": [T: "bal horgas lefelé jobb horgas lefelé szigony"] # 0x2950 (en: 'left barb down right barb down harpoon', DeepL translation) + - "⥑": [T: "fel horgas balra le horgas balra szigony"] # 0x2951 (en: 'up barb left down barb left harpoon', DeepL translation) + - "⥒": [T: "bal oldali szigony, a rúdig érő horoggal"] # 0x2952 (en: 'left harpoon with barb up to bar', DeepL translation) + - "⥓": [T: "jobb oldali szigony, rúdig érő horoggal"] # 0x2953 (en: 'right harpoon with barb up to bar', DeepL translation) + - "⥔": [T: "felfelé szigony, horoggal jobbra a rúd felé"] # 0x2954 (en: 'up harpoon with barb right to bar', DeepL translation) + - "⥕": [T: "lefelé szigony, horoggal jobbra a rúd felé"] # 0x2955 (en: 'down harpoon with barb right to bar', DeepL translation) + - "⥖": [T: "bal oldali szigony, horoggal lefelé a rúdig"] # 0x2956 (en: 'left harpoon with barb down to bar', DeepL translation) + - "⥗": [T: "jobb oldali szigony, lefelé horoggal a rúdig"] # 0x2957 (en: 'right harpoon with barb down to bar', DeepL translation) + - "⥘": [T: "felfelé szigony, balra mutató horoggal"] # 0x2958 (en: 'up harpoon with barb left to bar', DeepL translation) + - "⥙": [T: "lefelé szigony, balra mutató horoggal"] # 0x2959 (en: 'down harpoon with barb left to bar', DeepL translation) + - "⥚": [T: "bal oldali szigony, a rúdról felfelé álló horoggal"] # 0x295a (en: 'left harpoon with barb up from bar', DeepL translation) + - "⥛": [T: "jobb oldali szigony, a rúdról felfelé álló horoggal"] # 0x295b (en: 'right harpoon with barb up from bar', DeepL translation) + - "⥜": [T: "felfelé szigony, horoggal jobbra a rúdtól"] # 0x295c (en: 'up harpoon with barb right from bar', DeepL translation) + - "⥝": [T: "lefelé szigony, horoggal jobbra a rúdtól"] # 0x295d (en: 'down harpoon with barb right from bar', DeepL translation) + - "⥞": [T: "bal szigony, a rúdról lefelé irányuló horoggal"] # 0x295e (en: 'left harpoon with barb down from bar', DeepL translation) + - "⥟": [T: "jobb szigony, a rúdról lefelé irányuló horoggal"] # 0x295f (en: 'right harpoon with barb down from bar', DeepL translation) + - "⥠": [T: "felfelé szigony, a rúdtól balra lévő horoggal"] # 0x2960 (en: 'up harpoon with barb left from bar', DeepL translation) + - "⥡": [T: "lefelé szigony, a rúdtól balra lévő horoggal"] # 0x2961 (en: 'down harpoon with barb left from bar', DeepL translation) + - "⥢": [T: "bal szigony, horoggal felfelé fent, bal szigony, horoggal lefelé"] # 0x2962 (en: 'left harpoon with barb up above left harpoon with barb down', DeepL translation) + - "⥣": [T: "felfelé szigony, bal oldali horoggal, mellette felfelé szigony, jobb oldali horoggal"] # 0x2963 (en: 'up harpoon with barb left beside up harpoon with barb right', DeepL translation) + - "⥤": [T: "jobb szigony, horoggal felfelé fent, jobb szigony, horoggal lefelé"] # 0x2964 (en: 'right harpoon with barb up above right harpoon with barb down', DeepL translation) + - "⥥": [T: "lefelé mutató szigony, bal oldali horoggal, mellette lefelé irányuló szigony, jobb oldali horoggal"] # 0x2965 (en: 'down harpoon with barb left beside down harpoon with barb right', DeepL translation) + - "⥦": [T: "bal szigony, horoggal felfelé, felette jobb szigony, horoggal felfelé"] # 0x2966 (en: 'left harpoon with barb up above right harpoon with barb up', DeepL translation) + - "⥧": [T: "bal szigony, horoggal lefelé, felette jobb szigony, horoggal lefelé"] # 0x2967 (en: 'left harpoon with barb down above right harpoon with barb down', DeepL translation) + - "⥨": [T: "jobb oldali szigony, horoggal felfelé, a bal oldali szigony, horoggal felfelé felett"] # 0x2968 (en: 'right harpoon with barb up above left harpoon with barb up', DeepL translation) + - "⥩": [T: "jobb szigony, horoggal lefelé, a bal szigony, horoggal lefelé felett"] # 0x2969 (en: 'right harpoon with barb down above left harpoon with barb down', DeepL translation) + - "⥪": [T: "bal oldali szigony, horoggal a hosszú kötőjel felett"] # 0x296a (en: 'left harpoon with barb up above long dash', DeepL translation) + - "⥫": [T: "bal oldali szigony, horoggal lefelé a hosszú kötőjel alatt"] # 0x296b (en: 'left harpoon with barb down below long dash', DeepL translation) + - "⥬": [T: "jobb oldali szigony, hosszú kötőjel fölött felfelé mutató horoggal"] # 0x296c (en: 'right harpoon with barb up above long dash', DeepL translation) + - "⥭": [T: "jobb oldali szigony, hosszú kötőjel alatt lefelé mutató horoggal"] # 0x296d (en: 'right harpoon with barb down below long dash', DeepL translation) + - "⥮": [T: "felfelé szigony balra szegezett horoggal, mellette lefelé szigony jobbra szegezett horoggal"] # 0x296e (en: 'up harpoon with barb left beside down harpoon with barb right', DeepL translation) + - "⥯": [T: "lefelé szigony balra szegezett horoggal, mellette felfelé szigony jobbra szegezett horoggal"] # 0x296f (en: 'down harpoon with barb left beside up harpoon with barb right', DeepL translation) + - "⥰": [T: "jobb oldali kettős nyíl lekerekített fejjel"] # 0x2970 (en: 'right double arrow with rounded head', DeepL translation) + - "⥱": [T: "egyenlőségjel felett jobbra mutató nyíl"] # 0x2971 (en: 'equals above right arrow', DeepL translation) + - "⥲": [T: "tilde operátor a jobbra mutató nyíl fölött"] # 0x2972 (en: 'tilde operator above right arrow', DeepL translation) + - "⥳": [T: "bal nyíl a tilde operátor felett"] # 0x2973 (en: 'left arrow above tilde operator', DeepL translation) + - "⥴": [T: "jobb nyíl a tilde operátor felett"] # 0x2974 (en: 'right arrow above tilde operator', DeepL translation) + - "⥵": [T: "jobbra nyíl felett majdnem egyenlő"] # 0x2975 (en: 'right arrow above almost equal to', DeepL translation) + - "⥶": [T: "kevesebb, mint a fenti bal nyíl"] # 0x2976 (en: 'less than above left arrow', DeepL translation) + - "⥷": [T: "bal nyíl, kevesebb mint"] # 0x2977 (en: 'left arrow through less than', DeepL translation) + - "⥸": [T: "nagyobb, mint a jobb oldali nyíl fölött"] # 0x2978 (en: 'greater than above right arrow', DeepL translation) + - "⥹": [T: "részhalmaz felett jobbra nyíl"] # 0x2979 (en: 'subset above right arrow', DeepL translation) + - "⥺": [T: "bal nyíl alatt részhalmaz"] # 0x297a (en: 'left arrow through subset', DeepL translation) + - "⥻": [T: "szuperhalmaz felett balra nyíl"] # 0x297b (en: 'superset above left arrow', DeepL translation) + - "⥼": [T: "bal halfarok"] # 0x297c (en: 'left fish tail', DeepL translation) + - "⥽": [T: "jobb halfarok"] # 0x297d (en: 'right fish tail', DeepL translation) + - "⥾": [T: "felfelé halfarok"] # 0x297e (en: 'up fish tail', DeepL translation) + - "⥿": [T: "lefelé halfarok"] # 0x297f (en: 'down fish tail', DeepL translation) + - "⦀": [T: "háromszoros függőleges sávhatároló"] # 0x2980 (en: 'triple vertical bar delimiter', DeepL translation) + - "⦁": [T: "z jelölés folt"] # 0x2981 (en: 'z notation spot', DeepL translation) + - "⦂": [T: "z jelölés típusú kettőspont"] # 0x2982 (en: 'z notation type colon', DeepL translation) + - "⦃": [T: "bal fehér kapcsos zárójel"] # 0x2983 (en: 'left white brace', DeepL translation) + - "⦄": [T: "jobb fehér kapcsos zárójel"] # 0x2984 (en: 'right white brace', DeepL translation) + - "⦅": [T: "bal fehér zárójel"] # 0x2985 (en: 'left white parenthesis', DeepL translation) + - "⦆": [T: "jobb fehér zárójel"] # 0x2986 (en: 'right white parenthesis', DeepL translation) + - "⦇": [T: "z jelölés bal oldali képzárójelben"] # 0x2987 (en: 'z notation left image bracket', DeepL translation) + - "⦈": [T: "z jelölés jobb oldali képzárójelben"] # 0x2988 (en: 'z notation right image bracket', DeepL translation) + - "⦉": [T: "z jelölés bal oldali kötőjeles zárójelben"] # 0x2989 (en: 'z notation left binding bracket', DeepL translation) + - "⦊": [T: "z jelölés jobb kötőjeles zárójelben"] # 0x298a (en: 'z notation right binding bracket', DeepL translation) + - "⦋": [T: "bal szögletes zárójel aláhúzással"] # 0x298b (en: 'left square bracket with underbar', DeepL translation) + - "⦌": [T: "jobb szögletes zárójel aláhúzással"] # 0x298c (en: 'right square bracket with underbar', DeepL translation) + - "⦍": [T: "bal szögletes zárójel felső sarkában pipa"] # 0x298d (en: 'left square bracket with tick in top corner', DeepL translation) + - "⦎": [T: "jobb szögletes zárójel alsó sarkában pipa"] # 0x298e (en: 'right square bracket with tick in bottom corner', DeepL translation) + - "⦏": [T: "bal szögletes zárójel alsó sarkában pipa"] # 0x298f (en: 'left square bracket with tick in bottom corner', DeepL translation) + - "⦐": [T: "jobb szögletes zárójel felső sarkában pipa"] # 0x2990 (en: 'right square bracket with tick in top corner', DeepL translation) + - "⦑": [T: "bal szögletes zárójel ponttal"] # 0x2991 (en: 'left angle bracket with dot', DeepL translation) + - "⦒": [T: "jobb szögletes zárójel ponttal"] # 0x2992 (en: 'right angle bracket with dot', DeepL translation) + - "⦓": [T: "bal ív kisebb, mint zárójel"] # 0x2993 (en: 'left arc less than bracket', DeepL translation) + - "⦔": [T: "jobb ív nagyobb, mint zárójel"] # 0x2994 (en: 'right arc greater than bracket', DeepL translation) + - "⦕": [T: "dupla bal oldali ív nagyobb, mint zárójel "] # 0x2995 (en: 'double left arc greater than bracket', DeepL translation) + - "⦖": [T: "dupla jobb oldali ív kevesebb, mint zárójel"] # 0x2996 (en: 'double right arc less than bracket', DeepL translation) + - "⦗": [T: "bal fekete teknőspáncélos zárójel"] # 0x2997 (en: 'left black tortoise shell bracket', DeepL translation) + - "⦘": [T: "jobb fekete teknőspáncélos zárójel"] # 0x2998 (en: 'right black tortoise shell bracket', DeepL translation) + - "⦙": [T: "szaggatott kerítés"] # 0x2999 (en: 'dotted fence', DeepL translation) + - "⦚": [T: "függőleges cikkcakkos vonal"] # 0x299a (en: 'vertical zigzag line', DeepL translation) + - "⦛": [T: "bal oldali nyitott mért szög"] # 0x299b (en: 'measured angle opening left', DeepL translation) + - "⦜": [T: "derékszögű változat négyzettel"] # 0x299c (en: 'right angle variant with square', DeepL translation) + - "⦝": [T: "mért derékszög ponttal"] # 0x299d (en: 'measured right angle with dot', DeepL translation) + - "⦞": [T: "szög, belül s-sel"] # 0x299e (en: 'angle with s inside', DeepL translation) + - "⦟": [T: "hegyesszög"] # 0x299f (en: 'acute angle', DeepL translation) + - "⦠": [T: "bal felé nyitott gömbszög"] # 0x29a0 (en: 'spherical angle opening left', DeepL translation) + - "⦡": [T: "felfelé nyitott gömbszög"] # 0x29a1 (en: 'spherical angle opening up', DeepL translation) + - "⦢": [T: "elfordított szög"] # 0x29a2 (en: 'turned angle', DeepL translation) + - "⦣": [T: "fordított szög"] # 0x29a3 (en: 'reversed angle', DeepL translation) + - "⦤": [T: "szög aláhúzott vonallal"] # 0x29a4 (en: 'angle with underbar', DeepL translation) + - "⦥": [T: "fordított szög aláhúzással"] # 0x29a5 (en: 'reversed angle with underbar', DeepL translation) + - "⦦": [T: "felfelé nyíló ferde szög"] # 0x29a6 (en: 'oblique angle opening up', DeepL translation) + - "⦧": [T: "lefelé nyíló ferde szög"] # 0x29a7 (en: 'oblique angle opening down', DeepL translation) + - "⦨": [T: "mért szög, nyitott karral, amely felfelé és jobbra mutató nyílban végződik"] # 0x29a8 (en: 'measured angle with open arm ending in arrow pointing up and to the right', DeepL translation) + - "⦩": [T: "mért szög, nyitott karral, amely felfelé és balra mutató nyílban végződik"] # 0x29a9 (en: 'measured angle with open arm ending in arrow pointing up and to the left', DeepL translation) + - "⦪": [T: "mért szög, nyitott karral, amely lefelé és jobbra mutató nyílban végződik"] # 0x29aa (en: 'measured angle with open arm ending in arrow pointing down and to the right', DeepL translation) + - "⦫": [T: "mért szög, nyitott karral, amely lefelé és balra mutató nyílban végződik"] # 0x29ab (en: 'measured angle with open arm ending in arrow pointing down and to the left', DeepL translation) + - "⦬": [T: "mért szög, nyitott karral, amely jobbra és felfelé mutató nyílban végződik"] # 0x29ac (en: 'measured angle with open arm ending in arrow pointing right and up', DeepL translation) + - "⦭": [T: "mért szög, nyitott karral, amely balra és felfelé mutató nyílban végződik"] # 0x29ad (en: 'measured angle with open arm ending in arrow pointing left and up', DeepL translation) + - "⦮": [T: "mért szög, nyitott karral, amely jobbra és lefelé mutató nyílban végződik"] # 0x29ae (en: 'measured angle with open arm ending in arrow pointing right and down', DeepL translation) + - "⦯": [T: "mért szög, nyitott karral, amely balra és lefelé mutató nyílban végződik"] # 0x29af (en: 'measured angle with open arm ending in arrow pointing left and down', DeepL translation) + - "⦰": [T: "fordított üres halmaz"] # 0x29b0 (en: 'reversed empty set', DeepL translation) + - "⦱": [T: "üres halmaz túlfeszített vonallal"] # 0x29b1 (en: 'empty set with overbar', DeepL translation) + - "⦲": [T: "üres halmaz kis körrel a tetején"] # 0x29b2 (en: 'empty set with small circle above', DeepL translation) + - "⦳": [T: "üres halmaz, fölötte jobbra mutató nyíllal"] # 0x29b3 (en: 'empty set with right arrow above', DeepL translation) + - "⦴": [T: "üres halmaz, felül balra mutató nyíllal"] # 0x29b4 (en: 'empty set with left arrow above', DeepL translation) + - "⦵": [T: "kör vízszintes sávval"] # 0x29b5 (en: 'circle with horizontal bar', DeepL translation) + - "⦶": [T: "bekarikázott függőleges sáv"] # 0x29b6 (en: 'circled vertical bar', DeepL translation) + - "⦷": [T: "bekarikázott párhuzamos"] # 0x29b7 (en: 'circled parallel', DeepL translation) + - "⦸": [T: "bekarikázott fordított solidus"] # 0x29b8 (en: 'circled reverse solidus', DeepL translation) + - "⦹": [T: "bekarikázott merőleges"] # 0x29b9 (en: 'circled perpendicular', DeepL translation) + - "⦺": [T: "vízszintes sávval osztott körirat, melynek felső fele függőleges sávval van elválasztva"] # 0x29ba (en: 'circled divided by horizontal bar and top half divided by vertical bar', DeepL translation) + - "⦻": [T: "kör egymásra helyezett x-szel"] # 0x29bb (en: 'circle with superimposed x', DeepL translation) + - "⦼": [T: "bekarikázott, az óramutató járásával ellentétes irányban elforgatott osztójel"] # 0x29bc (en: 'circled anticlockwise rotated division sign', DeepL translation) + - "⦽": [T: "felfelé mutató nyíl a körön keresztül"] # 0x29bd (en: 'up arrow through circle', DeepL translation) + - "⦾": [T: "bekarikázott fehér golyó"] # 0x29be (en: 'circled white bullet', DeepL translation) + - "⦿": [T: "bekarikázott golyó"] # 0x29bf (en: 'circled bullet', DeepL translation) + - "⧀": [T: "bekarikázott kevesebb, mint"] # 0x29c0 (en: 'circled less than', DeepL translation) + - "⧁": [T: "bekarikázott nagyobb, mint"] # 0x29c1 (en: 'circled greater than', DeepL translation) + - "⧂": [T: "kör kis körrel a jobb oldalon"] # 0x29c2 (en: 'circle with small circle to the right', DeepL translation) + - "⧃": [T: "kör két vízszintes vonallal jobbra"] # 0x29c3 (en: 'circle with two horizontal strokes to the right', DeepL translation) + - "⧄": [T: "négyzet alakú, emelkedő átlós perjel"] # 0x29c4 (en: 'squared rising diagonal slash', DeepL translation) + - "⧅": [T: "négyzet alakú, csökkenő átlós perjel"] # 0x29c5 (en: 'squared falling diagonal slash', DeepL translation) + - "⧆": [T: "szögletes csillag"] # 0x29c6 (en: 'squared asterisk', DeepL translation) + - "⧇": [T: "négyzetes kis kör"] # 0x29c7 (en: 'squared small circle', DeepL translation) + - "⧈": [T: "négyzet alakú négyzet"] # 0x29c8 (en: 'squared square', DeepL translation) + - "⧉": [T: "két összekapcsolt négyzet"] # 0x29c9 (en: 'two joined squares', DeepL translation) + - "⧊": [T: "háromszög, felette ponttal"] # 0x29ca (en: 'triangle with dot above', DeepL translation) + - "⧋": [T: "háromszög, aláhúzott vonallal"] # 0x29cb (en: 'triangle with underbar', DeepL translation) + - "⧌": [T: "s háromszögben"] # 0x29cc (en: 's in triangle', DeepL translation) + - "⧍": [T: "háromszög, alul talpakkal"] # 0x29cd (en: 'triangle with serifs at bottom', DeepL translation) + - "⧎": [T: "jobb háromszög a bal háromszög felett"] # 0x29ce (en: 'right triangle above left triangle', DeepL translation) + - "⧏": [T: "bal oldali háromszög függőleges vonallal"] # 0x29cf (en: 'left triangle beside vertical bar', DeepL translation) + - "⧐": [T: "függőleges sáv a jobb oldali háromszög mellett"] # 0x29d0 (en: 'vertical bar beside right triangle', DeepL translation) + - "⧑": [T: "csokornyakkendő, melynek bal fele fekete"] # 0x29d1 (en: 'bowtie with left half black', DeepL translation) + - "⧒": [T: "csokornyakkendő, melynek jobb oldali fele fekete"] # 0x29d2 (en: 'bowtie with right half black', DeepL translation) + - "⧓": [T: "fekete csokornyakkendő"] # 0x29d3 (en: 'black bowtie', DeepL translation) + - "⧔": [T: "szorzó, melynek bal oldali fele fekete"] # 0x29d4 (en: 'times with left half black', DeepL translation) + - "⧕": [T: "szorzó, melynek jobb oldali fele fekete"] # 0x29d5 (en: 'times with right half black', DeepL translation) + - "⧖": [T: "fehér homokóra"] # 0x29d6 (en: 'white hourglass', DeepL translation) + - "⧗": [T: "fekete homokóra"] # 0x29d7 (en: 'black hourglass', DeepL translation) + - "⧘": [T: "balra hullámzó kerítés"] # 0x29d8 (en: 'left wiggly fence', DeepL translation) + - "⧙": [T: "jobbra hullámzó kerítés"] # 0x29d9 (en: 'right wiggly fence', DeepL translation) + - "⧚": [T: "bal oldali dupla hullámos kerítés"] # 0x29da (en: 'left double wiggly fence', DeepL translation) + - "⧛": [T: "jobb oldali dupla hullámos kerítés"] # 0x29db (en: 'right double wiggly fence', DeepL translation) + - "⧜": [T: "hiányos végtelen"] # 0x29dc (en: 'incomplete infinity', DeepL translation) + - "⧝": [T: "döntetlen a végtelenség felett"] # 0x29dd (en: 'tie over infinity', DeepL translation) + - "⧞": [T: "függőleges vonallal negált végtelen"] # 0x29de (en: 'infinity negated with vertical bar', DeepL translation) + - "⧟": [T: "dupla végű multitérkép"] # 0x29df (en: 'double-ended multimap', DeepL translation) + - "⧠": [T: "négyzet, kontúros körvonallal"] # 0x29e0 (en: 'square with contoured outline', DeepL translation) + - "⧡": [T: "növekszik, mint"] # 0x29e1 (en: 'increases as', DeepL translation) + - "⧢": [T: "kevert produktum"] # 0x29e2 (en: 'shuffle product', DeepL translation) + - "⧣": [T: "egyenlőségjel és ferde párhuzamos"] # 0x29e3 (en: 'equals sign and slanted parallel', DeepL translation) + - "⧤": [T: "egyenlőségjel és a fenti hullámvonallal ferde párhuzamos"] # 0x29e4 (en: 'equals sign and slanted parallel with tilde above', DeepL translation) + - "⧥": [T: "azonos és ferde párhuzamos"] # 0x29e5 (en: 'identical to and slanted parallel', DeepL translation) + - "⧦": [T: "egyformán erős"] # 0x29e6 (DeepL translation) + - "⧧": [T: "termodinamikus"] # 0x29e7 (en: 'thermodynamic', DeepL translation) + - "⧨": [T: "lefelé mutató háromszög, melynek bal fele fekete"] # 0x29e8 (en: 'down pointing triangle with left half black', DeepL translation) + - "⧩": [T: "lefelé mutató háromszög, melynek jobb fele fekete"] # 0x29e9 (en: 'down pointing triangle with right half black', DeepL translation) + - "⧪": [T: "fekete rombusz lefelé mutató nyíllal"] # 0x29ea (en: 'black diamond with down arrow', DeepL translation) + - "⧫": [T: "fekete rombusz"] # 0x29eb (en: 'black lozenge', DeepL translation) + - "⧬": [T: "fehér kör lefelé mutató nyíllal"] # 0x29ec (en: 'white circle with down arrow', DeepL translation) + - "⧭": [T: "fekete kör lefelé mutató nyíllal"] # 0x29ed (en: 'black circle with down arrow', DeepL translation) + - "⧮": [T: "hibahatárral ellátott fehér négyzet"] # 0x29ee (en: 'error-barred white square', DeepL translation) + - "⧯": [T: "hibahatárral ellátott fekete négyzet"] # 0x29ef (en: 'error-barred black square', DeepL translation) + - "⧰": [T: "hibahatárral ellátott sávos fehér rombusz"] # 0x29f0 (en: 'error-barred white diamond', DeepL translation) + - "⧱": [T: "hibahatárral ellátott sávos fekete rombusz"] # 0x29f1 (en: 'error-barred black diamond', DeepL translation) + - "⧲": [T: "hibahatárral ellátott fehér kör"] # 0x29f2 (en: 'error-barred white circle', DeepL translation) + - "⧳": [T: "hibahatárral ellátott fekete kör"] # 0x29f3 (en: 'error-barred black circle', DeepL translation) + - "⧴": [T: "szabály-késleltetett"] # 0x29f4 (en: 'rule-delayed', DeepL translation) + - "⧵": [T: "fordított solidus operátor"] # 0x29f5 (en: 'reverse solidus operator', DeepL translation) + - "⧶": [T: "solidus, fölötte vonallal"] # 0x29f6 (en: 'solidus with overbar', DeepL translation) + - "⧷": [T: "fordított solidus vízszintes vonallal"] # 0x29f7 (en: 'reverse solidus with horizontal stroke', DeepL translation) + - "⧸": [T: "nagy solidus"] # 0x29f8 (en: 'big solidus', DeepL translation) + - "⧹": [T: "nagy fordított solidus"] # 0x29f9 (en: 'big reverse solidus', DeepL translation) + - "⧺": [T: "dupla plusz"] # 0x29fa (en: 'double plus', DeepL translation) + - "⧻": [T: "hármas plusz"] # 0x29fb (en: 'triple plus', DeepL translation) + - "⧼": [T: "balra mutató ívelt szögletes zárójel"] # 0x29fc (en: 'left pointing curved angle bracket', DeepL translation) + - "⧽": [T: "jobbra mutató ívelt szögletes zárójel"] # 0x29fd (en: 'right pointing curved angle bracket', DeepL translation) + - "⧾": [T: "apró"] # 0x29fe (en: 'tiny', DeepL translation) + - "⧿": [T: "arcok"] # 0x29ff (DeepL translation) + - "⨀": [T: "bekarikázott pontoperátor"] # 0x2a00 (en: 'circled dot operator', DeepL translation) + - "⨁": [T: "bekarikázott plusz operátor"] # 0x2a01 (en: 'circled plus operator', DeepL translation) + - "⨂": [T: "bekarikázott szorzó operátor"] # 0x2a02 (en: 'circled times operator', DeepL translation) + - "⨃": [T: "unió operátor ponttal"] # 0x2a03 (en: 'union operator with dot', DeepL translation) + - "⨄": [T: "unió operátor plusszal"] # 0x2a04 (en: 'union operator with plus', DeepL translation) + - "⨅": [T: "négyzetes metszéspont operátor"] # 0x2a05 (en: 'square intersection operator', DeepL translation) + - "⨆": [T: "négyzetes unió operátor"] # 0x2a06 (en: 'square union operator', DeepL translation) + - "⨇": [T: "két logikai és operátor"] # 0x2a07 (en: 'two logical and operator', DeepL translation) + - "⨈": [T: "két logikai vagy operátor"] # 0x2a08 (en: 'two logical or operator', DeepL translation) + - "⨉": [T: "szorzó operátor"] # 0x2a09 (en: 'times operator', DeepL translation) + - "⨊": [T: "modulo kettő összege"] # 0x2a0a (en: 'modulo two sum', DeepL translation) + - "⨋": [T: "összegzés integrállal"] # 0x2a0b (en: 'summation with integral', DeepL translation) + - "⨌": [T: "négyszeres integrál operátor"] # 0x2a0c (en: 'quadruple integral operator', DeepL translation) + - "⨍": [T: "véges részintegrál"] # 0x2a0d (en: 'finite part integral', DeepL translation) + - "⨎": [T: "integrál kettős vonallal"] # 0x2a0e (en: 'integral with double stroke', DeepL translation) + - "⨏": [T: "integrálátlag perjellel"] # 0x2a0f (en: 'integral average with slash', DeepL translation) + - "⨐": [T: "keringési függvény"] # 0x2a10 (en: 'circulation function', DeepL translation) + - "⨑": [T: "az óramutató járásával ellentétes irányú integrál"] # 0x2a11 (en: 'anticlockwise integration', DeepL translation) + - "⨒": [T: "vonalintegráció téglalap alakú pályával a pólus körül"] # 0x2a12 (en: 'line integration with rectangular path around pole', DeepL translation) + - "⨓": [T: "vonalintegráció félköríves pályával a pólus körül"] # 0x2a13 (en: 'line integration with semicircular path around pole', DeepL translation) + - "⨔": [T: "vonalintegráció a pólus nélkül"] # 0x2a14 (en: 'line integration not including the pole', DeepL translation) + - "⨕": [T: "integrál egy pontoperátor körül"] # 0x2a15 (en: 'integral around a point operator', DeepL translation) + - "⨖": [T: "kvaternion integrál operátor"] # 0x2a16 (en: 'quaternion integral operator', DeepL translation) + - "⨗": [T: "integrál bal nyilas horoggal"] # 0x2a17 (en: 'integral with left arrow with hook', DeepL translation) + - "⨘": [T: "integrál szorzásjelekkel"] # 0x2a18 (en: 'integral with times sign', DeepL translation) + - "⨙": [T: "integrál metszésponttal"] # 0x2a19 (en: 'integral with intersection', DeepL translation) + - "⨚": [T: "integrál unióval"] # 0x2a1a (en: 'integral with union', DeepL translation) + - "⨛": [T: "integrál túlsó vonallal"] # 0x2a1b (en: 'integral with overbar', DeepL translation) + - "⨜": [T: "integrál aláhúzással"] # 0x2a1c (en: 'integral with underbar', DeepL translation) + - "⨝": [T: "egyesítés"] # 0x2a1d (en: 'join', DeepL translation) + - "⨞": [T: "nagy bal oldali háromszög operátor"] # 0x2a1e (en: 'large left triangle operator', DeepL translation) + - "⨟": [T: "z jelölési séma összetétele"] # 0x2a1f (en: 'z notation schema composition', DeepL translation) + - "⨠": [T: "z jelölési séma csővezetékkel"] # 0x2a20 (en: 'z notation schema piping', DeepL translation) + - "⨡": [T: "z jelölési séma kivetítése"] # 0x2a21 (en: 'z notation schema projection', DeepL translation) + - "⨢": [T: "plusz jel, felül körrel"] # 0x2a22 (en: 'plus sign with circle above', DeepL translation) + - "⨣": [T: "plusz jel, felette körkörös ékezettel"] # 0x2a23 (en: 'plus sign with circumflex accent above', DeepL translation) + - "⨤": [T: "plusz jel, tilde fölött"] # 0x2a24 (en: 'plus sign with tilde above', DeepL translation) + - "⨥": [T: "pluszjel, alatta ponttal"] # 0x2a25 (en: 'plus sign with dot below', DeepL translation) + - "⨦": [T: "plusz jel, alatta tilde"] # 0x2a26 (en: 'plus sign with tilde below', DeepL translation) + - "⨧": [T: "plusz jel, kettős alsó indexszel"] # 0x2a27 (en: 'plus sign with subscript two', DeepL translation) + - "⨨": [T: "plusz jel, fekete háromszöggel"] # 0x2a28 (en: 'plus sign with black triangle', DeepL translation) + - "⨩": [T: "mínusz jel, felette vessző"] # 0x2a29 (en: 'minus sign with comma above', DeepL translation) + - "⨪": [T: "mínusz jel, alatta ponttal"] # 0x2a2a (en: 'minus sign with dot below', DeepL translation) + - "⨫": [T: "mínusz jel, csökkenő pontokkal"] # 0x2a2b (en: 'minus sign with falling dots', DeepL translation) + - "⨬": [T: "mínusz jel, emelkedő pontokkal"] # 0x2a2c (en: 'minus sign with rising dots', DeepL translation) + - "⨭": [T: "plusz jel a bal oldali félkörben"] # 0x2a2d (en: 'plus sign in left half circle', DeepL translation) + - "⨮": [T: "plusz jel a jobb oldali félkörben"] # 0x2a2e (en: 'plus sign in right half circle', DeepL translation) + - "⨯": # 0x2a2f + - test: + if: "$Verbosity='Terse'" + then: [T: "kereszt szorzata:"] # (en: 'cross', DeepL translation) + else: [T: "kereszt szorzata:"] # (en: 'cross product', DeepL translation) + - "⨰": [T: "szorzójel, ponttal a tetején"] # 0x2a30 (en: 'multiplication sign with dot above', DeepL translation) + - "⨱": [T: "szorzójel alsó vonallal"] # 0x2a31 (en: 'multiplication sign with underbar', DeepL translation) + - "⨲": [T: "alul zárt, féldirekt szorzata"] # 0x2a32 (en: 'semidirect product with bottom closed', DeepL translation) + - "⨳": [T: "szuperszorzat"] # 0x2a33 (en: 'smash product', DeepL translation) + - "⨴": [T: "szorzójel a bal oldali félkörben"] # 0x2a34 (en: 'multiplication sign in left half circle', DeepL translation) + - "⨵": [T: "szorzójel a jobb oldali félkörben"] # 0x2a35 (en: 'multiplication sign in right half circle', DeepL translation) + - "⨶": [T: "bekarikázott szorzójel körkörös ékezettel"] # 0x2a36 (en: 'circled multiplication sign with circumflex accent', DeepL translation) + - "⨷": [T: "szorzójel kettős körben"] # 0x2a37 (en: 'multiplication sign in double circle', DeepL translation) + - "⨸": [T: "bekarikázott osztásjel"] # 0x2a38 (en: 'circled division sign', DeepL translation) + - "⨹": [T: "plusz jel háromszögben"] # 0x2a39 (en: 'plus sign in triangle', DeepL translation) + - "⨺": [T: "mínusz jel háromszögben"] # 0x2a3a (en: 'minus sign in triangle', DeepL translation) + - "⨻": [T: "szorzójel háromszögben"] # 0x2a3b (en: 'multiplication sign in triangle', DeepL translation) + - "⨼": [T: "belső szorzat"] # 0x2a3c (en: 'interior product', DeepL translation) + - "⨽": [T: "jobb oldali belső szorzat"] # 0x2a3d (en: 'righthand interior product', DeepL translation) + - "⨾": [T: "z jelölés relációs kompozíció"] # 0x2a3e (en: 'z notation relational composition', DeepL translation) + - "⨿": [T: "összeolvadás vagy koprodukció"] # 0x2a3f (en: 'amalgamation or coproduct', DeepL translation) + - "⩀": [T: "metszéspont ponttal"] # 0x2a40 (en: 'intersection with dot', DeepL translation) + - "⩁": [T: "unió mínusz jellel"] # 0x2a41 (en: 'union with minus sign', DeepL translation) + - "⩂": [T: "unió összekötővonallal"] # 0x2a42 (en: 'union with overbar', DeepL translation) + - "⩃": [T: "metszéspont összekötővonallal"] # 0x2a43 (en: 'intersection with overbar', DeepL translation) + - "⩄": [T: "metszéspont logikai és"] # 0x2a44 (en: 'intersection with logical and', DeepL translation) + - "⩅": [T: "unió logikai vagy"] # 0x2a45 (en: 'union with logical or', DeepL translation) + - "⩆": [T: "unió a metszéspont felett"] # 0x2a46 (en: 'union above intersection', DeepL translation) + - "⩇": [T: "metszéspont felett unió"] # 0x2a47 (en: 'intersection above union', DeepL translation) + - "⩈": [T: "unió feletti sáv, felette metszéspont"] # 0x2a48 (en: 'union above bar above intersection', DeepL translation) + - "⩉": [T: "metszéspont feletti sáv, felette unió"] # 0x2a49 (en: 'intersection above bar above union', DeepL translation) + - "⩊": [T: "unió mellett és unióval összekapcsolva"] # 0x2a4a (en: 'union beside and joined with union', DeepL translation) + - "⩋": [T: "metszéspont mellett összekapcsolt metszéspont"] # 0x2a4b (en: 'intersection beside and joined with intersection', DeepL translation) + - "⩌": [T: "zárt unió talpakkal"] # 0x2a4c (en: 'closed union with serifs', DeepL translation) + - "⩍": [T: "zárt metszéspont talpakkal"] # 0x2a4d (en: 'closed intersection with serifs', DeepL translation) + - "⩎": [T: "kettős négyzet metszéspont"] # 0x2a4e (en: 'double square intersection', DeepL translation) + - "⩏": [T: "dupla négyzet alakú unió"] # 0x2a4f (en: 'double square union', DeepL translation) + - "⩐": [T: "zárt unió talpakkal és szuperszorzatokkal"] # 0x2a50 (en: 'closed union with serifs and smash product', DeepL translation) + - "⩑": [T: "logikus és felül ponttal"] # 0x2a51 (en: 'logical and with dot above', DeepL translation) + - "⩒": [T: "logikus vagy felül ponttal"] # 0x2a52 (en: 'logical or with dot above', DeepL translation) + - "⩓": [T: "dupla logikai és"] # 0x2a53 (en: 'double logical and', DeepL translation) + - "⩔": [T: "dupla logikai vagy"] # 0x2a54 (en: 'double logical or', DeepL translation) + - "⩕": [T: "két egymást metsző logikai és"] # 0x2a55 (en: 'two intersecting logical and', DeepL translation) + - "⩖": [T: "két egymást metsző logikai vagy"] # 0x2a56 (en: 'two intersecting logical or', DeepL translation) + - "⩗": [T: "ferde nagy vagy"] # 0x2a57 (en: 'sloping large or', DeepL translation) + - "⩘": [T: "ferde nagy és"] # 0x2a58 (en: 'sloping large and', DeepL translation) + - "⩙": [T: "logikai vagy átfedő logikai és"] # 0x2a59 (en: 'logical or overlapping logical and', DeepL translation) + - "⩚": [T: "logikai és középső szárral"] # 0x2a5a (en: 'logical and with middle stem', DeepL translation) + - "⩛": [T: "logikai vagy középső szárral"] # 0x2a5b (en: 'logical or with middle stem', DeepL translation) + - "⩜": [T: "logikai és vízszintes kötőjellel"] # 0x2a5c (en: 'logical and with horizontal dash', DeepL translation) + - "⩝": [T: "logikai vagy vízszintes kötőjellel"] # 0x2a5d (en: 'logical or with horizontal dash', DeepL translation) + - "⩞": [T: "logikai és dupla felülvonallal"] # 0x2a5e (en: 'logical and with double overbar', DeepL translation) + - "⩟": [T: "logikus és alsó vonallal"] # 0x2a5f (en: 'logical and with underbar', DeepL translation) + - "⩠": [T: "logikai és dupla aláhúzással"] # 0x2a60 (en: 'logical and with double underbar', DeepL translation) + - "⩡": [T: "kis V-alakú alsó merevítővel"] # 0x2a61 (en: 'small vee with underbar', DeepL translation) + - "⩢": [T: "logikai vagy dupla felső vonallal"] # 0x2a62 (en: 'logical or with double overbar', DeepL translation) + - "⩣": [T: "logikai vagy dupla aláhúzott sávval"] # 0x2a63 (en: 'logical or with double underbar', DeepL translation) + - "⩤": [T: "korlátozásmentes z jelölés tartomány"] # 0x2a64 (en: 'z notation domain antirestriction', DeepL translation) + - "⩥": [T: "korlátozásmentes z jelölés tartomány"] # 0x2a65 (en: 'z notation range antirestriction', DeepL translation) + - "⩦": [T: "egyenlőségjel alul ponttal"] # 0x2a66 (en: 'equals sign with dot below', DeepL translation) + - "⩧": [T: "azonos a fenti ponttal"] # 0x2a67 (en: 'identical with dot above', DeepL translation) + - "⩨": [T: "háromszoros vízszintes sáv dupla függőleges vonallal"] # 0x2a68 (en: 'triple horizontal bar with double vertical stroke', DeepL translation) + - "⩩": [T: "háromszoros vízszintes sáv háromszoros függőleges vonallal"] # 0x2a69 (en: 'triple horizontal bar with triple vertical stroke', DeepL translation) + - "⩪": [T: "tilde operátor felül ponttal"] # 0x2a6a (en: 'tilde operator with dot above', DeepL translation) + - "⩫": [T: "tilde operátor emelkedő pontokkal"] # 0x2a6b (en: 'tilde operator with rising dots', DeepL translation) + - "⩬": [T: "hasonló mínusz hasonló"] # 0x2a6c (en: 'similar minus similar', DeepL translation) + - "⩭": [T: "egybeesik a fenti ponttal"] # 0x2a6d (en: 'congruent with dot above', DeepL translation) + - "⩮": [T: "egyenlő csillaggal"] # 0x2a6e (en: 'equals with asterisk', DeepL translation) + - "⩯": [T: "majdnem egyenlő a körkörös ékezettel"] # 0x2a6f (en: 'almost equal to with circumflex accent', DeepL translation) + - "⩰": [T: "megközelítőleg egyenlő vagy egyenlő"] # 0x2a70 (en: 'approximately equal to or equal to', DeepL translation) + - "⩱": [T: "egyenlőségjel felett plusz jel"] # 0x2a71 (en: 'equals sign above plus sign', DeepL translation) + - "⩲": [T: "plusz jel felett egyenlő jel"] # 0x2a72 (en: 'plus sign above equals sign', DeepL translation) + - "⩳": [T: "egyenlőségjel a tilde operátor felett"] # 0x2a73 (en: 'equals sign above tilde operator', DeepL translation) + - "⩴": [T: "kettős kettőspont egyenlő"] # 0x2a74 (en: 'double colon equal', DeepL translation) + - "⩵": [T: "két egymást követő egyenlőségjel"] # 0x2a75 (en: 'two consecutive equals signs', DeepL translation) + - "⩶": [T: "három egymást követő egyenlőségjel"] # 0x2a76 (en: 'three consecutive equals signs', DeepL translation) + - "⩷": [T: "egyenlőségjel két ponttal felül és két ponttal alul"] # 0x2a77 (en: 'equals sign with two dots above and two dots below', DeepL translation) + - "⩸": [T: "egyenértékű négy pont fölött"] # 0x2a78 (en: 'equivalent with four dots above', DeepL translation) + - "⩹": [T: "kisebb, mint belül körrel"] # 0x2a79 (en: 'less than with circle inside', DeepL translation) + - "⩺": [T: "nagyobb, mint körrel belül"] # 0x2a7a (en: 'greater than with circle inside', DeepL translation) + - "⩻": [T: "kevesebb mint, felette kérdőjellel"] # 0x2a7b (en: 'less than with question mark above', DeepL translation) + - "⩼": [T: "nagyobb, mint a fenti kérdőjellel"] # 0x2a7c (en: 'greater than with question mark above', DeepL translation) + - "⩽": [T: "kevesebb, mint vagy ferdén egyenlő"] # 0x2a7d (en: 'less than or slanted equal to', DeepL translation) + - "⩾": [T: "nagyobb, mint egyenlő vagy ferde egyenlő"] # 0x2a7e (en: 'greater than or slanted equal to', DeepL translation) + - "⩿": [T: "kevesebb, mint vagy ferde egyenlő, benne ponttal"] # 0x2a7f (en: 'less than or slanted equal to with dot inside', DeepL translation) + - "⪀": [T: "nagyobb, mint vagy ferde egyenlő, benne ponttal"] # 0x2a80 (en: 'greater than or slanted equal to with dot inside', DeepL translation) + - "⪁": [T: "kisebb, mint vagy ferde egyenlő, pont fölött"] # 0x2a81 (en: 'less than or slanted equal to with dot above', DeepL translation) + - "⪂": [T: "nagyobb, mint vagy ferdén egyenlő, pont fölött"] # 0x2a82 (en: 'greater than or slanted equal to with dot above', DeepL translation) + - "⪃": [T: "kisebb, mint vagy ferdén egyenlő, pont felett jobbra"] # 0x2a83 (en: 'less than or slanted equal to with dot above right', DeepL translation) + - "⪄": [T: "nagyobb, mint vagy ferde egyenlő, balra fent ponttal"] # 0x2a84 (en: 'greater than or slanted equal to with dot above left', DeepL translation) + - "⪅": [T: "kisebb, mint vagy megközelítőleg"] # 0x2a85 (en: 'less than or approximate', DeepL translation) + - "⪆": [T: "nagyobb, mint vagy megközelítő"] # 0x2a86 (en: 'greater than or approximate', DeepL translation) + - "⪇": [T: "kisebb, mint és egyetlen sor nem egyenlő"] # 0x2a87 (en: 'less than and single line not equal to', DeepL translation) + - "⪈": [T: "nagyobb, mint és egyetlen sor nem egyenlő"] # 0x2a88 (en: 'greater than and single line not equal to', DeepL translation) + - "⪉": [T: "kisebb, mint és nem megközelítő"] # 0x2a89 (en: 'less than and not approximate', DeepL translation) + - "⪊": [T: "nagyobb, mint és nem megközelítő"] # 0x2a8a (en: 'greater than and not approximate', DeepL translation) + - "⪋": [T: "kisebb, mint a fenti dupla vonal, egyenlő a fenti nagyobb, mint"] # 0x2a8b (en: 'less than above double line equal above greater than', DeepL translation) + - "⪌": [T: "nagyobb, mint a fenti dupla vonal, egyenlő a fenti kisebb, mint"] # 0x2a8c (en: 'greater than above double line equal above less than', DeepL translation) + - "⪍": [T: "kisebb, mint a fenti hasonló vagy egyenlő"] # 0x2a8d (en: 'less than above similar or equal', DeepL translation) + - "⪎": [T: "nagyobb, mint a fenti hasonló vagy egyenlő"] # 0x2a8e (en: 'greater than above similar or equal', DeepL translation) + - "⪏": [T: "kisebb, mint a fenti hasonló, a fenti nagyobb, mint"] # 0x2a8f (en: 'less than above similar above greater than', DeepL translation) + - "⪐": [T: "nagyobb, mint a fenti hasonló fent kisebb, mint"] # 0x2a90 (en: 'greater than above similar above less than', DeepL translation) + - "⪑": [T: "kisebb, mint a fenti nagyobb, mint a fenti dupla vonal egyenlő"] # 0x2a91 (en: 'less than above greater than above double line equal', DeepL translation) + - "⪒": [T: "nagyobb, mint a fenti kisebb, mint a fenti dupla vonal egyenlő"] # 0x2a92 (en: 'greater than above less than above double line equal', DeepL translation) + - "⪓": [T: "kisebb, mint a fenti ferde egyenlő, fent nagyobb, mint a fenti ferde egyenlő"] # 0x2a93 (en: 'less than above slanted equal above greater than above slanted equal', DeepL translation) + - "⪔": [T: "nagyobb, mint a fenti ferde egyenlő, fent kisebb, mint a fenti ferde egyenlő"] # 0x2a94 (en: 'greater than above slanted equal above less than above slanted equal', DeepL translation) + - "⪕": [T: "ferde egyenlő vagy kisebb, mint"] # 0x2a95 (en: 'slanted equal to or less than', DeepL translation) + - "⪖": [T: "ferde egyenlő vagy nagyobb, mint"] # 0x2a96 (en: 'slanted equal to or greater than', DeepL translation) + - "⪗": [T: "ferde egyenlő vagy kisebb, mint a pont belsejével"] # 0x2a97 (en: 'slanted equal to or less than with dot inside', DeepL translation) + - "⪘": [T: "ferde egyenlő vagy nagyobb, mint a pont belsejével"] # 0x2a98 (en: 'slanted equal to or greater than with dot inside', DeepL translation) + - "⪙": [T: "dupla vonal egyenlő vagy kisebb, mint"] # 0x2a99 (en: 'double line equal to or less than', DeepL translation) + - "⪚": [T: "dupla vonal egyenlő vagy nagyobb, mint"] # 0x2a9a (en: 'double line equal to or greater than', DeepL translation) + - "⪛": [T: "dupla vonal ferdén egyenlő vagy kisebb, mint"] # 0x2a9b (en: 'double line slanted equal to or less than', DeepL translation) + - "⪜": [T: "dupla vonal ferdén egyenlő vagy nagyobb, mint"] # 0x2a9c (en: 'double line slanted equal to or greater than', DeepL translation) + - "⪝": [T: "hasonló vagy kisebb, mint"] # 0x2a9d (en: 'similar or less than', DeepL translation) + - "⪞": [T: "hasonló vagy nagyobb, mint"] # 0x2a9e (en: 'similar or greater than', DeepL translation) + - "⪟": [T: "hasonló fenti kisebb, mint fent egyenlőségjel"] # 0x2a9f (en: 'similar above less than above equals sign', DeepL translation) + - "⪠": [T: "hasonló fenti nagyobb, mint fent egyenlőségjel"] # 0x2aa0 (en: 'similar above greater than above equals sign', DeepL translation) + - "⪡": [T: "dupla beágyazott kisebb, mint"] # 0x2aa1 (en: 'double nested less than', DeepL translation) + - "⪢": [T: "dupla beágyazott nagyobb, mint"] # 0x2aa2 (en: 'double nested greater than', DeepL translation) + - "⪣": [T: "dupla beágyazott kisebb, mint alsó vonallal"] # 0x2aa3 (en: 'double nested less than with underbar', DeepL translation) + - "⪤": [T: "nagyobb, mint átfedő kisebb, mint"] # 0x2aa4 (en: 'greater than overlapping less than', DeepL translation) + - "⪥": [T: "nagyobb, mint kisebb, mint mellett"] # 0x2aa5 (en: 'greater than beside less than', DeepL translation) + - "⪦": [T: "kisebb, mint görbével zárt"] # 0x2aa6 (en: 'less than closed by curve', DeepL translation) + - "⪧": [T: "nagyobb, mint görbével zárt"] # 0x2aa7 (en: 'greater than closed by curve', DeepL translation) + - "⪨": [T: "kisebb, mint a fenti görbe által bezárt ferde egyenlő"] # 0x2aa8 (en: 'less than closed by curve above slanted equal', DeepL translation) + - "⪩": [T: "nagyobb, mint a fenti görbe által bezárt ferde egyenlő"] # 0x2aa9 (en: 'greater than closed by curve above slanted equal', DeepL translation) + - "⪪": [T: "kisebb, mint"] # 0x2aaa (en: 'smaller than', DeepL translation) + - "⪫": [T: "nagyobb, mint"] # 0x2aab (en: 'larger than', DeepL translation) + - "⪬": [T: "kisebb vagy egyenlő"] # 0x2aac (en: 'smaller than or equal to', DeepL translation) + - "⪭": [T: "nagyobb vagy egyenlő"] # 0x2aad (en: 'larger than or equal to', DeepL translation) + - "⪮": [T: "egyenlőségjel dudorral felül"] # 0x2aae (en: 'equals sign with bumpy above', DeepL translation) + - "⪯": [T: "megelőzi az egysoros egyenlőségjelet"] # 0x2aaf (en: 'precedes above single line equals sign', DeepL translation) + - "⪰": [T: "követi az egysoros egyenlőségjelet"] # 0x2ab0 (en: 'succeeds above single line equals sign', DeepL translation) + - "⪱": [T: "megelőzi az egysoros nem egyenlő jelet"] # 0x2ab1 (en: 'precedes above single line not equal to', DeepL translation) + - "⪲": [T: "követi az egysoros nem egyenlő jelet"] # 0x2ab2 (en: 'succeeds above single line not equal to', DeepL translation) + - "⪳": [T: "megelőzi a fenti egyenlőségjelet"] # 0x2ab3 (en: 'precedes above equals sign', DeepL translation) + - "⪴": [T: "követi a fenti egyenlőségjelet"] # 0x2ab4 (en: 'succeeds above equals sign', DeepL translation) + - "⪵": [T: "megelőzi a fentit, nem egyenlő vele"] # 0x2ab5 (en: 'precedes above not equal to', DeepL translation) + - "⪶": [T: "követi a fentit, nem egyenlő vele"] # 0x2ab6 (en: 'succeeds above not equal to', DeepL translation) + - "⪷": [T: "megelőzi a fentieket, majdnem egyenlő"] # 0x2ab7 (en: 'precedes above almost equal to', DeepL translation) + - "⪸": [T: "követi a fentieket, majdnem egyenlő"] # 0x2ab8 (en: 'succeeds above almost equal to', DeepL translation) + - "⪹": [T: "megelőzi a fentieket, közel sem egyenlő a következővel:"] # 0x2ab9 (en: 'precedes above not almost equal to', DeepL translation) + - "⪺": [T: "követi a fentieket, közel sem egyenlő a következővel"] # 0x2aba (en: 'succeeds above not almost equal to', DeepL translation) + - "⪻": [T: "duplán megelőzi"] # 0x2abb (en: 'double precedes', DeepL translation) + - "⪼": [T: "duplán követi"] # 0x2abc (en: 'double succeeds', DeepL translation) + - "⪽": [T: "részhalmaz ponttal"] # 0x2abd (en: 'subset with dot', DeepL translation) + - "⪾": [T: "szuperhalmaz ponttal"] # 0x2abe (en: 'superset with dot', DeepL translation) + - "⪿": [T: "részhalmaz, alatta pluszjellel"] # 0x2abf (en: 'subset with plus sign below', DeepL translation) + - "⫀": [T: "szuperhalmaz, alatta pluszjellel"] # 0x2ac0 (en: 'superset with plus sign below', DeepL translation) + - "⫁": [T: "részhalmaz, alul szorzásjellel"] # 0x2ac1 (en: 'subset with multiplication sign below', DeepL translation) + - "⫂": [T: "szuperhalmaz, alul szorzásjellel"] # 0x2ac2 (en: 'superset with multiplication sign below', DeepL translation) + - "⫃": [T: "részhalmaza vagy egyenlő a fenti ponttal"] # 0x2ac3 (en: 'subset of or equal to with dot above', DeepL translation) + - "⫄": [T: "szuperhalmaza vagy egyenlő a fenti ponttal"] # 0x2ac4 (en: 'superset of or equal to with dot above', DeepL translation) + - "⫅": [T: "a fenti egyenlőségjel részhalmaza"] # 0x2ac5 (en: 'subset of above equals sign', DeepL translation) + - "⫆": [T: "a fenti egyenlőségjel szuperhalmaza"] # 0x2ac6 (en: 'superset of above equals sign', DeepL translation) + - "⫇": [T: "a fenti tilde operátor részhalmaza"] # 0x2ac7 (en: 'subset of above tilde operator', DeepL translation) + - "⫈": [T: "a fenti tilde operátor szuperhalmaza"] # 0x2ac8 (en: 'superset of above tilde operator', DeepL translation) + - "⫉": [T: "a fenti részhalmaza majdnem egyenlő"] # 0x2ac9 (en: 'subset of above almost equal to', DeepL translation) + - "⫊": [T: "a fenti szuperhalmaza majdnem egyenlő"] # 0x2aca (en: 'superset of above almost equal to', DeepL translation) + - "⫋": [T: "a fenti részhalmaz nem egyenlő"] # 0x2acb (en: 'subset above not equal to', DeepL translation) + - "⫌": [T: "a fenti szuperhalmaz nem egyenlő"] # 0x2acc (en: 'superset of above not equal to', DeepL translation) + - "⫍": [T: "balra nyitott négyzet alakú doboz operátor"] # 0x2acd (en: 'square left open box operator', DeepL translation) + - "⫎": [T: "jobbra nyitott négyzet alakú doboz operátor"] # 0x2ace (en: 'square right open box operator', DeepL translation) + - "⫏": [T: "zárt részhalmaza ennek:"] # 0x2acf (en: 'closed subset', DeepL translation) + - "⫐": [T: "zárt szuperhalmaza ennek:"] # 0x2ad0 (en: 'closed superset', DeepL translation) + - "⫑": [T: "zárt részhalmaza vagy egyenlő"] # 0x2ad1 (en: 'closed subset or equal to', DeepL translation) + - "⫒": [T: "zárt szuperhalmaza vagy egyenlő"] # 0x2ad2 (en: 'closed superset or equal to', DeepL translation) + - "⫓": [T: "részhalmaz felett szuperhalmaz"] # 0x2ad3 (en: 'subset above superset', DeepL translation) + - "⫔": [T: "szuperhalmaz felett részhalmaz"] # 0x2ad4 (DeepL translation) + - "⫕": [T: "részhalmaz felett részhalmaz"] # 0x2ad5 (en: 'subset above subset', DeepL translation) + - "⫖": [T: "szuperhalmaz felett szuperhalmaz"] # 0x2ad6 (DeepL translation) + - "⫗": [T: "szuperhalmaz mellett részhalmaz"] # 0x2ad7 (en: 'superset beside subset', DeepL translation) + - "⫘": [T: "szuperhalmaz mellette és kötőjellel összekapcsolt részhalmaz"] # 0x2ad8 (en: 'superset beside and joined by dash with subset', DeepL translation) + - "⫙": [T: "a lefelé nyitás eleme"] # 0x2ad9 (en: 'element of opening down', DeepL translation) + - "⫚": [T: "vasvilla, téglalappal a tetején"] # 0x2ada (en: 'pitchfork with tee top', DeepL translation) + - "⫛": [T: "keresztirányú metszéspont"] # 0x2adb (en: 'transversal intersection', DeepL translation) + - "⫝̸": [T: "elágazás"] # 0x2adc (en: 'forking', DeepL translation) + - "⫝": [T: "nem elágazás"] # 0x2add (en: 'nonforking', DeepL translation) + - "⫞": [T: "rövid bal oldali csapás"] # 0x2ade (en: 'short left tack', DeepL translation) + - "⫟": [T: "rövid lefelé irányuló csapás"] # 0x2adf (en: 'short down tack', DeepL translation) + - "⫠": [T: "rövid felfelé irányuló csapás"] # 0x2ae0 (en: 'short up tack', DeepL translation) + - "⫡": [T: "merőleges az s-re"] # 0x2ae1 (en: 'perpendicular with s', DeepL translation) + - "⫢": [T: "függőleges sávos hármas jobb oldali forgókapu"] # 0x2ae2 (en: 'vertical bar triple right turnstile', DeepL translation) + - "⫣": [T: "dupla függőleges sávos bal oldali forgókapu"] # 0x2ae3 (en: 'double vertical bar left turnstile', DeepL translation) + - "⫤": [T: "függőleges sávos dupla bal oldali forgókapu"] # 0x2ae4 (en: 'vertical bar double left turnstile', DeepL translation) + - "⫥": [T: "dupla függőleges sáv dupla bal oldali forgókapu"] # 0x2ae5 (en: 'double vertical bar double left turnstile', DeepL translation) + - "⫦": [T: "hosszú kötőjel a kettős függőleges bal tagjától"] # 0x2ae6 (en: 'long dash from left member of double vertical', DeepL translation) + - "⫧": [T: "rövid lefelé irányuló csapás felső sávval"] # 0x2ae7 (en: 'short down tack with overbar', DeepL translation) + - "⫨": [T: "rövid felfelé irányuló csapás alsó sávval"] # 0x2ae8 (en: 'short up tack with underbar', DeepL translation) + - "⫩": [T: "rövid felfelé irányuló csapás a rövid lefelé irányuló csapás felett"] # 0x2ae9 (en: 'short up tack above short down tack', DeepL translation) + - "⫪": [T: "kettős lefelé irányuló csapás"] # 0x2aea (en: 'double down tack', DeepL translation) + - "⫫": [T: "kettős felfelé irányuló csapás"] # 0x2aeb (en: 'double up tack', DeepL translation) + - "⫬": [T: "kettős vonás nem jel"] # 0x2aec (en: 'double stroke not sign', DeepL translation) + - "⫭": [T: "fordított kettős vonás nem jel"] # 0x2aed (en: 'reversed double stroke not sign', DeepL translation) + - "⫮": [T: "nem oszt fordított tagadó perjellel"] # 0x2aee (en: 'does not divide with reversed negation slash', DeepL translation) + - "⫯": [T: "függőleges vonal, felette körrel"] # 0x2aef (en: 'vertical line with circle above', DeepL translation) + - "⫰": [T: "függőleges vonal, alatta körrel"] # 0x2af0 (en: 'vertical line with circle below', DeepL translation) + - "⫱": [T: "lefelé haladó körrel alul"] # 0x2af1 (en: 'down tack with circle below', DeepL translation) + - "⫲": [T: "párhuzamos vízszintes vonallal"] # 0x2af2 (en: 'parallel with horizontal stroke', DeepL translation) + - "⫳": [T: "párhuzamos tilde operátorral"] # 0x2af3 (en: 'parallel with tilde operator', DeepL translation) + - "⫴": [T: "háromszoros függőleges sáv bináris reláció"] # 0x2af4 (en: 'triple vertical bar binary relation', DeepL translation) + - "⫵": [T: "háromszoros függőleges sáv vízszintes vonalvezetéssel"] # 0x2af5 (en: 'triple vertical bar with horizontal stroke', DeepL translation) + - "⫶": [T: "háromszoros kettőspont operátor"] # 0x2af6 (en: 'triple colon operator', DeepL translation) + - "⫷": [T: "háromszoros beágyazott kevesebb mint"] # 0x2af7 (en: 'triple nested less than', DeepL translation) + - "⫸": [T: "háromszoros beágyazott nagyobb, mint"] # 0x2af8 (en: 'triple nested greater than', DeepL translation) + - "⫹": [T: "a dupla vonal dőlésszöge kisebb vagy egyenlő, mint"] # 0x2af9 (en: 'double line slanted less than or equal to', DeepL translation) + - "⫺": [T: "a dupla vonal dőlésszöge nagyobb vagy egyenlő, mint"] # 0x2afa (en: 'double line slanted greater than or equal to', DeepL translation) + - "⫻": [T: "hármas solidus bináris reláció"] # 0x2afb (en: 'triple solidus binary relation', DeepL translation) + - "⫼": [T: "nagy, háromszoros függőleges sávos operátor"] # 0x2afc (en: 'large triple vertical bar operator', DeepL translation) + - "⫽": [T: "kettős solidus operátor"] # 0x2afd (en: 'double solidus operator', DeepL translation) + - "⫾": [T: "fehér függőleges sáv"] # 0x2afe (en: 'white vertical bar', DeepL translation) + - "⫿": [T: "fehér függőleges sáv"] # 0x2aff (en: 'white vertical bar', DeepL translation) + - "⬀": [T: "északkeleti fehér nyíl"] # 0x2b00 (en: 'north east white arrow', DeepL translation) + - "⬁": [T: "északnyugati fehér nyíl"] # 0x2b01 (en: 'north west white arrow', DeepL translation) + - "⬂": [T: "délkeleti fehér nyíl"] # 0x2b02 (en: 'south east white arrow', DeepL translation) + - "⬃": [T: "délnyugati fehér nyíl"] # 0x2b03 (en: 'south west white arrow', DeepL translation) + - "⬄": [T: "balra jobbra fehér nyíl"] # 0x2b04 (en: 'left right white arrow', DeepL translation) + - "⬅": [T: "balra mutató fekete nyíl"] # 0x2b05 (en: 'left black arrow', DeepL translation) + - "⬆": [T: "felfelé mutató fekete nyíl"] # 0x2b06 (en: 'up black arrow', DeepL translation) + - "⬇": [T: "lefelé mutató fekete nyíl"] # 0x2b07 (en: 'down black arrow', DeepL translation) + - "⬈": [T: "északkeleti fekete nyíl"] # 0x2b08 (en: 'north east black arrow', DeepL translation) + - "⬉": [T: "északnyugati fekete nyíl"] # 0x2b09 (en: 'north west black arrow', DeepL translation) + - "⬊": [T: "délkeleti fekete nyíl"] # 0x2b0a (en: 'south east black arrow', DeepL translation) + - "⬋": [T: "délnyugati fekete nyíl"] # 0x2b0b (en: 'south west black arrow', DeepL translation) + - "⬌": [T: "balra jobbra fekete nyíl"] # 0x2b0c (en: 'left right black arrow', DeepL translation) + - "⬍": [T: "fel-le mutató fekete nyíl"] # 0x2b0d (en: 'up down black arrow', DeepL translation) + - "⬎": [T: "jobbra mutató nyíl, lefelé mutató heggyel"] # 0x2b0e (en: 'right arrow with tip down', DeepL translation) + - "⬏": [T: "jobbra mutató nyíl, felfelé mutató heggyel"] # 0x2b0f (en: 'right arrow with tip up', DeepL translation) + - "⬐": [T: "balra mutató nyíl, lefelé mutató heggyel"] # 0x2b10 (en: 'left arrow with tip down', DeepL translation) + - "⬑": [T: "balra mutató nyíl, felfelé mutató heggyel"] # 0x2b11 (en: 'left arrow with tip up', DeepL translation) + - "⬒": [T: "négyzet, melynek a felső fele fekete"] # 0x2b12 (en: 'square with top half black', DeepL translation) + - "⬓": [T: "négyzet, melynek az alsó fele fekete"] # 0x2b13 (en: 'square with bottom half black', DeepL translation) + - "⬔": [T: "négyzet, melynek jobb felső átlójának fele fekete"] # 0x2b14 (en: 'square with upper right diagonal half black', DeepL translation) + - "⬕": [T: "négyzet, melynek bal alsó átlójának fele fekete"] # 0x2b15 (en: 'square with lower left diagonal half black', DeepL translation) + - "⬖": [T: "rombusz, melynek bal oldali fele fekete"] # 0x2b16 (en: 'diamond with left half black', DeepL translation) + - "⬗": [T: "rombusz, melynek jobb oldali fele fekete"] # 0x2b17 (en: 'diamond with right half black', DeepL translation) + - "⬘": [T: "rombusz, melynek felső fele fekete"] # 0x2b18 (en: 'diamond with top half black', DeepL translation) + - "⬙": [T: "rombusz, melynek alsó fele fekete"] # 0x2b19 (en: 'diamond with bottom half black', DeepL translation) + - "⬚": [T: "doboz"] # 0x2b1a (en: 'box', DeepL translation) + - "⬛": [T: "fekete nagy négyzet"] # 0x2b1b (en: 'black large square', DeepL translation) + - "⬜": [T: "fehér nagy négyzet"] # 0x2b1c (en: 'white large square', DeepL translation) + - "⬝": [T: "fekete nagyon kicsi négyzet"] # 0x2b1d (en: 'black very small square', DeepL translation) + - "⬞": [T: "fehér nagyon kicsi négyzet"] # 0x2b1e (en: 'white very small square', DeepL translation) + - "⬟": [T: "fekete ötszög"] # 0x2b1f (en: 'black pentagon', DeepL translation) + - "⬠": [T: "fehér ötszög"] # 0x2b20 (en: 'white pentagon', DeepL translation) + - "⬡": [T: "fehér hatszög"] # 0x2b21 (en: 'white hexagon', DeepL translation) + - "⬢": [T: "fekete hatszög"] # 0x2b22 (en: 'black hexagon', DeepL translation) + - "⬣": [T: "vízszintes fekete hatszög"] # 0x2b23 (en: 'horizontal black hexagon', DeepL translation) + - "⬤": [T: "fekete nagy kör"] # 0x2b24 (en: 'black large circle', DeepL translation) + - "⬥": [T: "fekete közepes rombusz"] # 0x2b25 (en: 'black medium diamond', DeepL translation) + - "⬦": [T: "fehér közepes rombusz"] # 0x2b26 (en: 'white medium diamond', DeepL translation) + - "⬧": [T: "fekete közepes rombusz"] # 0x2b27 (en: 'black medium lozenge', DeepL translation) + - "⬨": [T: "fehér közepes rombusz"] # 0x2b28 (en: 'white medium lozenge', DeepL translation) + - "⬩": [T: "fekete kis rombusz"] # 0x2b29 (en: 'black small diamond', DeepL translation) + - "⬪": [T: "fekete kis rombusz"] # 0x2b2a (en: 'black small lozenge', DeepL translation) + - "⬫": [T: "fehér kis rombusz"] # 0x2b2b (en: 'white small lozenge', DeepL translation) + - "⬬": [T: "fekete vízszintes ellipszis"] # 0x2b2c (en: 'black horizontal ellipse', DeepL translation) + - "⬭": [T: "fehér vízszintes ellipszis"] # 0x2b2d (en: 'white horizontal ellipse', DeepL translation) + - "⬮": [T: "fekete függőleges ellipszis"] # 0x2b2e (en: 'black vertical ellipse', DeepL translation) + - "⬯": [T: "fehér függőleges ellipszis"] # 0x2b2f (en: 'white vertical ellipse', DeepL translation) + - "⬰": [T: "bal nyíl kis körrel"] # 0x2b30 (en: 'left arrow with small circle', DeepL translation) + - "⬱": [T: "három balra mutató nyíl"] # 0x2b31 (en: 'three left arrows', DeepL translation) + - "⬲": [T: "bal nyíl bekarikázott plusszal"] # 0x2b32 (en: 'left arrow with circled plus', DeepL translation) + - "⬳": [T: "hosszú balra mutató szaggatott nyíl"] # 0x2b33 (en: 'long left squiggle arrow', DeepL translation) + - "⬴": [T: "balra mutató kétfejű nyíl függőleges vonallal"] # 0x2b34 (en: 'left two headed arrow with vertical stroke', DeepL translation) + - "⬵": [T: "balra mutató kétfejű nyíl dupla függőleges vonallal"] # 0x2b35 (en: 'left two headed arrow with double vertical stroke', DeepL translation) + - "⬶": [T: "balra mutató kétfejű nyíl a sávtól"] # 0x2b36 (en: 'left two headed arrow from bar', DeepL translation) + - "⬷": [T: "balra mutató kétfejű hármas kötőjeles nyíl"] # 0x2b37 (en: 'left two headed triple dash arrow', DeepL translation) + - "⬸": [T: "balra mutató nyíl szaggatott szárral"] # 0x2b38 (en: 'left arrow with dotted stem', DeepL translation) + - "⬹": [T: "balra mutató nyíl függőleges vonallal ellátott farokkal"] # 0x2b39 (en: 'left arrow with tail with vertical stroke', DeepL translation) + - "⬺": [T: "balra mutató nyíl dupla függőleges vonallal ellátott farokkal"] # 0x2b3a (en: 'left arrow with tail with double vertical stroke', DeepL translation) + - "⬻": [T: "balra mutató kétfejű nyíl farokkal"] # 0x2b3b (en: 'left two headed arrow with tail', DeepL translation) + - "⬼": [T: "balra mutató kétfejű nyíl, függőleges vonallal ellátott farokkal"] # 0x2b3c (en: 'left two headed arrow with tail with vertical stroke', DeepL translation) + - "⬽": [T: "balra mutató kétfejű nyíl, dupla függőleges vonallal és farokkal"] # 0x2b3d (en: 'left two headed arrow with tail with double vertical stroke', DeepL translation) + - "⬾": [T: "balra nyíl az x-en keresztül"] # 0x2b3e (en: 'left arrow through x', DeepL translation) + - "⬿": [T: "hullámzó nyíl, mely egyenesen balra mutat"] # 0x2b3f (en: 'wave arrow pointing directly left', DeepL translation) + - "⭀": [T: "egyenlőségjel a bal oldali nyíl fölött"] # 0x2b40 (en: 'equals sign above left arrow', DeepL translation) + - "⭁": [T: "fordított tilde operátor a bal oldali nyíl felett"] # 0x2b41 (en: 'reverse tilde operator above left arrow', DeepL translation) + - "⭂": [T: "balra mutató nyíl felett a fordított majdnem egyenlő"] # 0x2b42 (en: 'left arrow above reverse almost equal to', DeepL translation) + - "⭃": [T: "jobbra mutató nyíl a nagyobb mint"] # 0x2b43 (en: 'right arrow through greater than', DeepL translation) + - "⭄": [T: "jobbra mutató nyíl a szuperhalmazon keresztül"] # 0x2b44 (en: 'right arrow through superset', DeepL translation) + - "⭅": [T: "balra mutató négyszeres nyíl"] # 0x2b45 (en: 'left quadruple arrow', DeepL translation) + - "⭆": [T: "jobbra mutató négyszeres nyíl"] # 0x2b46 (en: 'right quadruple arrow', DeepL translation) + - "⭇": [T: "fordított tilde operátor a jobb nyíl felett"] # 0x2b47 (en: 'reverse tilde operator above right arrow', DeepL translation) + - "⭈": [T: "jobb nyíl fölött fordítva majdnem egyenlő"] # 0x2b48 (en: 'right arrow above reverse almost equal to', DeepL translation) + - "⭉": [T: "tilde operátor a balra mutató nyíl fölött"] # 0x2b49 (en: 'tilde operator above left arrow', DeepL translation) + - "⭊": [T: "balra mutató nyíl felett majdnem egyenlő"] # 0x2b4a (en: 'left arrow above almost equal to', DeepL translation) + - "⭋": [T: "balra mutató nyíl felett fordított tilde operátor"] # 0x2b4b (en: 'left arrow above reverse tilde operator', DeepL translation) + - "⭌": [T: "jobbra mutató nyíl felett fordított tilde operátor"] # 0x2b4c (en: 'right arrow above reverse tilde operator', DeepL translation) + - "⭐": [T: "fehér közepes csillag"] # 0x2b50 (en: 'white medium star', DeepL translation) + - "⭑": [T: "fekete kis csillag"] # 0x2b51 (en: 'black small star', DeepL translation) + - "⭒": [T: "fehér kis csillag"] # 0x2b52 (en: 'white small star', DeepL translation) + - "⭓": [T: "fekete jobbra mutató ötszög"] # 0x2b53 (en: 'black right pointing pentagon', DeepL translation) + - "⭔": [T: "fehér jobbra mutató ötszög"] # 0x2b54 (en: 'white right pointing pentagon', DeepL translation) + - "⭕": [T: "nehéz nagy kör"] # 0x2b55 (en: 'heavy large circle', DeepL translation) + - "⭖": [T: "nehéz ovális, benne mégegy ovális"] # 0x2b56 (en: 'heavy oval with oval inside', DeepL translation) + - "⭗": [T: "nehéz kör, benne körrel"] # 0x2b57 (en: 'heavy circle with circle inside', DeepL translation) + - "⭘": [T: "nehéz kör"] # 0x2b58 (en: 'heavy circle', DeepL translation) + - "⭙": [T: "nehéz, körbefutó sólyom"] # 0x2b59 (en: 'heavy circled saltire', DeepL translation) + - "⸀": [T: "derékszögű helyettesítő jelölés"] # 0x2e00 (en: 'right angle substitution marker', DeepL translation) + - "⸁": [T: "jobb derékszögű pontozott helyettesítési jelölő"] # 0x2e01 (en: 'right angle dotted substitution marker', DeepL translation) + - "⸂": [T: "bal helyettesítő zárójel"] # 0x2e02 (en: 'left substitution bracket', DeepL translation) + - "⸃": [T: "jobb helyettesítő zárójel"] # 0x2e03 (en: 'right substitution bracket', DeepL translation) + - "⸄": [T: "bal pontozott helyettesítő zárójel"] # 0x2e04 (en: 'left dotted substitution bracket', DeepL translation) + - "⸅": [T: "jobb pontozott helyettesítő zárójel"] # 0x2e05 (en: 'right dotted substitution bracket', DeepL translation) + - "⸆": [T: "emelt interpolációs jelölő"] # 0x2e06 (en: 'raised interpolation marker', DeepL translation) + - "⸇": [T: "emelt pontozott interpolációs jelölő"] # 0x2e07 (en: 'raised dotted interpolation marker', DeepL translation) + - "⸈": [T: "pontozott transzpozíciójelző jelölő"] # 0x2e08 (en: 'dotted transposition marker marker', DeepL translation) + - "⸉": [T: "bal oldali transzponáló zárójel"] # 0x2e09 (en: 'left transposition bracket', DeepL translation) + - "⸊": [T: "jobb oldali transzponáló zárójel"] # 0x2e0a (en: 'right transposition bracket', DeepL translation) + - "⸋": [T: "emelt négyzet"] # 0x2e0b (en: 'raised square', DeepL translation) + - "⸌": [T: "bal oldali kiemelt kihagyó zárójel"] # 0x2e0c (en: 'left raised omission bracket', DeepL translation) + - "⸍": [T: "jobb oldali kiemelt kihagyó zárójel"] # 0x2e0d (en: 'right raised omission bracket', DeepL translation) + - "⸎": [T: "szerkesztői koronás"] # 0x2e0e (DeepL translation) + - "⸏": [T: "bekezdések"] # 0x2e0f (en: 'paragraphos', DeepL translation) + - "⸐": [T: "elágazó bekezdések"] # 0x2e10 (en: 'forked paragraphos', DeepL translation) + - "⸑": [T: "fordított elágazású bekezdések"] # 0x2e11 (en: 'reversed forked paragraphos', DeepL translation) + - "⸒": [T: "hipodiasztolé"] # 0x2e12 (DeepL translation) + - "⸓": [T: "pontozott obelosz"] # 0x2e13 (en: 'dotted obelos', DeepL translation) + - "⸔": [T: "lefelé ancora"] # 0x2e14 (en: 'down ancora', DeepL translation) + - "⸕": [T: "felfelé ancora"] # 0x2e15 (en: 'up ancora', DeepL translation) + - "⸖": [T: "pontozott jobbra mutató szög"] # 0x2e16 (en: 'dotted right pointing angle', DeepL translation) + - "⸗": [T: "dupla ferde kötőjel"] # 0x2e17 (en: 'double oblique hyphen', DeepL translation) + - "⸘": [T: "inverted interrobang"] # 0x2e18 (en: 'inverted interrobang', DeepL translation) + - "⸙": [T: "pálmaág"] # 0x2e19 (en: 'palm branch', DeepL translation) + - "⸚": [T: "kötőjel diaerézissel"] # 0x2e1a (en: 'hyphen with diaeresis', DeepL translation) + - "⸛": [T: "tilde felette gyűrűvel"] # 0x2e1b (en: 'tilde with ring above', DeepL translation) + - "⸜": [T: "bal alsó parafrázis zárójel"] # 0x2e1c (en: 'left low paraphrase bracket', DeepL translation) + - "⸝": [T: "jobb alsó parafrázis zárójel"] # 0x2e1d (en: 'right low paraphrase bracket', DeepL translation) + - "⸞": [T: "tilde, felette ponttal"] # 0x2e1e (en: 'tilde with dot above', DeepL translation) + - "⸟": [T: "tilde, alatta ponttal"] # 0x2e1f (en: 'tilde with dot below', DeepL translation) + - "⸠": [T: "bal oldali függőleges sáv tollal"] # 0x2e20 (en: 'left vertical bar with quill', DeepL translation) + - "⸡": [T: "jobb oldali függőleges sáv tollal"] # 0x2e21 (en: 'right vertical bar with quill', DeepL translation) + - "⸢": [T: "bal felső fél zárójel"] # 0x2e22 (en: 'top left half bracket', DeepL translation) + - "⸣": [T: "jobb felső fél zárójel"] # 0x2e23 (en: 'top right half bracket', DeepL translation) + - "⸤": [T: "bal alsó fél zárójel"] # 0x2e24 (en: 'bottom left half bracket', DeepL translation) + - "⸥": [T: "jobb alsó fél zárójel"] # 0x2e25 (en: 'bottom right half bracket', DeepL translation) + - "⸦": [T: "bal oldali u zárójel"] # 0x2e26 (en: 'left sideways u bracket', DeepL translation) + - "⸧": [T: "jobb oldali u zárójel"] # 0x2e27 (en: 'right sideways u bracket', DeepL translation) + - "⸨": [T: "bal oldali dupla zárójelek"] # 0x2e28 (en: 'left double parentheses', DeepL translation) + - "⸩": [T: "jobb oldali dupla zárójelek"] # 0x2e29 (en: 'right double parentheses', DeepL translation) + - "⸪": [T: "két pont egy pont felett írásjellel"] # 0x2e2a (en: 'two dots over one dot punctuation', DeepL translation) + - "⸫": [T: "egy pont két pont felett írásjellel"] # 0x2e2b (en: 'one dot over two dots punctuation', DeepL translation) + - "⸬": [T: "négyzet alakú négypontos írásjel"] # 0x2e2c (en: 'squared four dot punctuation', DeepL translation) + - "⸭": [T: "öt pontos jelölés"] # 0x2e2d (en: 'five dot mark', DeepL translation) + - "⸮": [T: "fordított kérdőjel"] # 0x2e2e (en: 'reversed question mark', DeepL translation) + - "ⸯ": [T: "függőleges tilde"] # 0x2e2f (en: 'vertical tilde', DeepL translation) + - "⸰": [T: "gyűrűs pont"] # 0x2e30 (en: 'ring point', DeepL translation) + - "⸱": [T: "szó elválasztó középső pont"] # 0x2e31 (en: 'word separator middle dot', DeepL translation) + - "⸲": [T: "fordított vesszővel"] # 0x2e32 (en: 'turned comma', DeepL translation) + - "⸳": [T: "emelt pont"] # 0x2e33 (en: 'raised dot', DeepL translation) + - "⸴": [T: "emelt vessző"] # 0x2e34 (en: 'raised comma', DeepL translation) + - "⸵": [T: "fordított pontosvessző"] # 0x2e35 (en: 'turned semicolon', DeepL translation) + - "⸶": [T: "tőr bal oldali védővel"] # 0x2e36 (en: 'dagger with left guard', DeepL translation) + - "⸷": [T: "tőr jobb oldali védővel"] # 0x2e37 (en: 'dagger with right guard', DeepL translation) + - "⸸": [T: "elfordított tőr"] # 0x2e38 (en: 'turned dagger', DeepL translation) + - "⸹": [T: "felső félrész jelzés"] # 0x2e39 (en: 'top half section sign', DeepL translation) + - "⸺": [T: "két em kötőjel"] # 0x2e3a (en: 'two em dash', DeepL translation) + - "⸻": [T: "három em kötőjel"] # 0x2e3b (en: 'three em dash', DeepL translation) + - "〃": [T: "dettó jelölés"] # 0x3003 (en: 'ditto mark', DeepL translation) + - "〈": [T: "bal szögletes zárójel"] # 0x3008 (en: 'left angle bracket', DeepL translation) + - "〉": [T: "jobb szögletes zárójel"] # 0x3009 (en: 'right angle bracket', DeepL translation) + - "《": [T: "bal dupla szögletes zárójel"] # 0x300a (en: 'left double angle bracket', DeepL translation) + - "》": [T: "jobb dupla szögletes zárójel"] # 0x300b (en: 'right double angle bracket', DeepL translation) + - "「": [T: "bal sarok zárójel"] # 0x300c (en: 'left corner bracket', DeepL translation) + - "」": [T: "jobb sarok zárójel"] # 0x300d (en: 'right corner bracket', DeepL translation) + - "『": [T: "bal oldali fehér sarokzárójel"] # 0x300e (en: 'left white corner bracket', DeepL translation) + - "』": [T: "jobb oldali fehér sarok zárójel"] # 0x300f (en: 'right white corner bracket', DeepL translation) + - "【": [T: "bal oldali fekete lencsés zárójel"] # 0x3010 (en: 'left black lenticular bracket', DeepL translation) + - "】": [T: "jobb oldali fekete lencsés zárójel"] # 0x3011 (en: 'right black lenticular bracket', DeepL translation) + - "〔": [T: "bal oldali teknőspáncélos zárójel"] # 0x3014 (en: 'left tortoise shell bracket', DeepL translation) + - "〕": [T: "jobb oldali teknőspáncélos zárójel"] # 0x3015 (en: 'right tortoise shell bracket', DeepL translation) + - "〖": [T: "bal oldali fehér lencsés zárójel"] # 0x3016 (en: 'left white lenticular bracket', DeepL translation) + - "〗": [T: "jobb oldali fehér lencsés zárójel"] # 0x3017 (en: 'right white lenticular bracket', DeepL translation) + - "〘": [T: "bal oldali fehér teknőspáncélos zárójel"] # 0x3018 (en: 'left white tortoise shell bracket', DeepL translation) + - "〙": [T: "jobb oldali fehér teknőspáncélos zárójel"] # 0x3019 (en: 'right white tortoise shell bracket', DeepL translation) + - "〚": [T: "bal oldali fehér szögletes zárójel"] # 0x301a (en: 'left white square bracket', DeepL translation) + - "〛": [T: "jobb oldali fehér szögletes zárójel"] # 0x301b (en: 'right white square bracket', DeepL translation) + - "〜": [T: "hullámos kötőjel"] # 0x301c (en: 'wave dash', DeepL translation) + - "〰": [T: "hullámos kötőjel"] # 0x3030 (en: 'wavy dash', DeepL translation) + - "㉈": [T: "bekarikázott tízes szám fekete négyzetben"] # 0x3248 (en: 'circled number ten on black square', DeepL translation) + - "㉉": [T: "bekarikázott húszas szám fekete négyzetben"] # 0x3249 (en: 'circled number twenty on black square', DeepL translation) + - "㉊": [T: "bekarikázott harmincas szám fekete négyzetben"] # 0x324a (en: 'circled number thirty on black square', DeepL translation) + - "㉋": [T: "bekarikázott negyvenes szám fekete négyzetben"] # 0x324b (en: 'circled number forty on blacks square', DeepL translation) + - "㉌": [T: "bekarikázott ötvenes szám fekete négyzetben"] # 0x324c (en: 'circled number fifty on black square', DeepL translation) + - "㉍": [T: "bekarikázott hatvanas szám fekete négyzetben"] # 0x324d (en: 'circled number sixty on black square', DeepL translation) + - "㉎": [T: "bekarikázott hetvenes szám fekete négyzetben"] # 0x324e (en: 'circled number seventy on black square', DeepL translation) + - "㉏": [T: "bekarikázott nyolcvanas szám fekete négyzetben"] # 0x324f (en: 'circled number eighty on black square', DeepL translation) + - "㉑": [T: "bekarikázott huszonegyes szám"] # 0x3251 (en: 'circled number twenty one', DeepL translation) + - "㉒": [T: "bekarikázott huszonkettes szám"] # 0x3252 (en: 'circled number twenty two', DeepL translation) + - "㉓": [T: "bekarikázott huszonhármas szám"] # 0x3253 (en: 'circled number twenty three', DeepL translation) + - "㉔": [T: "bekarikázott huszonnégyes szám"] # 0x3254 (en: 'circled number twenty four', DeepL translation) + - "㉕": [T: "bekarikázott huszonötös szám"] # 0x3255 (en: 'circled number twenty five', DeepL translation) + - "㉖": [T: "bekarikázott huszonhatos szám"] # 0x3256 (en: 'circled number twenty six', DeepL translation) + - "㉗": [T: "bekarikázott huszonhetes szám"] # 0x3257 (en: 'circled number twenty seven', DeepL translation) + - "㉘": [T: "bekarikázott huszonnyolcas szám"] # 0x3258 (en: 'circled number twenty eight', DeepL translation) + - "㉙": [T: "bekarikázott huszonkilences szám"] # 0x3259 (en: 'circled number twenty nine', DeepL translation) + - "㉚": [T: "bekarikázott harmincas szám"] # 0x325a (en: 'circled number thirty', DeepL translation) + - "㉛": [T: "bekarikázott harmincegyes szám"] # 0x325b (en: 'circled number thirty one', DeepL translation) + - "㉜": [T: "bekarikázott harminckettes szám"] # 0x325c (en: 'circled number thirty two', DeepL translation) + - "㉝": [T: "bekarikázott harminchármas szám"] # 0x325d (en: 'circled number thirty three', DeepL translation) + - "㉞": [T: "bekarikázott harmincnégyes szám"] # 0x325e (en: 'circled number thirty four', DeepL translation) + - "㉟": [T: "bekarikázott harmincötös szám"] # 0x325f (en: 'circled number thirty five', DeepL translation) + - "㊱": [T: "bekarikázott harminchatos szám"] # 0x32b1 (en: 'circled number thirty six', DeepL translation) + - "㊲": [T: "bekarikázott harminchetes szám"] # 0x32b2 (GPT-5.4 translation) (en: 'circled number thirty seven', DeepL translation) + - "㊳": [T: "bekarikázott harmincnyolcas szám"] # 0x32b3 (GPT-5.4 translation) (en: 'circled number thirty eight', DeepL translation) + - "㊴": [T: "bekarikázott harminckilences szám"] # 0x32b4 (GPT-5.4 translation) (en: 'circled number thirty nine', DeepL translation) + - "㊵": [T: "bekarikázott negyvenes szám"] # 0x32b5 (GPT-5.4 translation) (en: 'circled number forty', DeepL translation) + - "㊶": [T: "bekarikázott negyvenegyes szám"] # 0x32b6 (GPT-5.4 translation) (en: 'circled number forty one', DeepL translation) + - "㊷": [T: "bekarikázott negyvenkettes szám"] # 0x32b7 (GPT-5.4 translation) (en: 'circled number forty two', DeepL translation) + - "㊸": [T: "bekarikázott negyvenhármas szám"] # 0x32b8 (GPT-5.4 translation) (en: 'circled number forty three', DeepL translation) + - "㊹": [T: "bekarikázott negyvennégyes szám"] # 0x32b9 (GPT-5.4 translation) (en: 'circled number forty four', DeepL translation) + - "㊺": [T: "bekarikázott negyvenötös szám"] # 0x32ba (GPT-5.4 translation) (en: 'circled number forty five', DeepL translation) + - "㊻": [T: "bekarikázott negyvenhatos szám"] # 0x32bb (GPT-5.4 translation) (en: 'circled number forty six', DeepL translation) + - "㊼": [T: "bekarikázott negyvenhetes szám"] # 0x32bc (GPT-5.4 translation) (en: 'circled number forty seven', DeepL translation) + - "㊽": [T: "bekarikázott negyvennyolcas szám"] # 0x32bd (GPT-5.4 translation) (en: 'circled number forty eight', DeepL translation) + - "㊾": [T: "bekarikázott negyvenkilences szám"] # 0x32be (GPT-5.4 translation) (en: 'circled number forty nine', DeepL translation) + - "㊿": [T: "bekarikázott ötvenes szám"] # 0x32bf (GPT-5.4 translation) (en: 'circled number fifty', DeepL translation) + - "㋌": [T: "higany"] # 0x32cc (en: 'mercury', DeepL translation) + - "㋍": [T: "ergok"] # 0x32cd (DeepL translation) + - "㋎": [T: "elektronvolt"] # 0x32ce (en: 'electron volts', DeepL translation) + - "㋏": [T: "korlátozott felelősség jele"] # 0x32cf (en: 'limited liability sign', DeepL translation) + - "㍱": [T: "hektopascal"] # 0x3371 (en: 'hectopascals', DeepL translation) + - "㍲": [T: "dalton"] # 0x3372 (en: 'daltons', DeepL translation) + - "㍳": [T: "csillagászati egység"] # 0x3373 (en: 'astronomical units', DeepL translation) + - "㍴": [T: "sávok"] # 0x3374 (en: 'bars', DeepL translation) + - "㍵": [T: "o v"] # 0x3375 (DeepL translation) + - "㍶": [T: "parszek"] # 0x3376 (en: 'parsecs', DeepL translation) + - "㍷": [T: "deciméter"] # 0x3377 (en: 'decimeters', DeepL translation) + - "㍸": [T: "négyzet deciméter"] # 0x3378 (en: 'decimeters squared', DeepL translation) + - "㍹": [T: "köbdeciméter"] # 0x3379 (en: 'decimeters cubed', DeepL translation) + - "㍺": [T: "instrumentális egység"] # 0x337a (en: 'instrumental units', DeepL translation) + - "㎀": [T: "picoamper"] # 0x3380 (en: 'picoamps', DeepL translation) + - "㎁": [T: "nanoamper"] # 0x3381 (en: 'nanoamps', DeepL translation) + - "㎂": [T: "mikroamper"] # 0x3382 (en: 'microamps', DeepL translation) + - "㎃": [T: "milliamper"] # 0x3383 (en: 'milliamps', DeepL translation) + - "㎄": [T: "kiloamper"] # 0x3384 (en: 'kiloamps', DeepL translation) + - "㎅": [T: "kilobájt"] # 0x3385 (en: 'kilobytes', DeepL translation) + - "㎆": [T: "megabájt"] # 0x3386 (en: 'megabytes', DeepL translation) + - "㎇": [T: "gigabájt"] # 0x3387 (en: 'gigabytes', DeepL translation) + - "㎈": [T: "kalória"] # 0x3388 (en: 'calories', DeepL translation) + - "㎉": [T: "kilokalória"] # 0x3389 (en: 'kilocalories', DeepL translation) + - "㎊": [T: "pikofarád"] # 0x338a (en: 'picofarads', DeepL translation) + - "㎋": [T: "nanofarád"] # 0x338b (en: 'nanofarads', DeepL translation) + - "㎌": [T: "mikrofarád"] # 0x338c (en: 'microfarads', DeepL translation) + - "㎍": [T: "mikrogramm"] # 0x338d (en: 'micrograms', DeepL translation) + - "㎎": [T: "milligramm"] # 0x338e (en: 'milligrams', DeepL translation) + - "㎏": [T: "kilogramm"] # 0x338f (en: 'kilograms', DeepL translation) + - "㎐": [T: "hertz"] # 0x3390 (DeepL translation) + - "㎑": [T: "kilohertz"] # 0x3391 (DeepL translation) + - "㎒": [T: "megahertz"] # 0x3392 (DeepL translation) + - "㎓": [T: "gigahertz"] # 0x3393 (DeepL translation) + - "㎔": [T: "terahertz"] # 0x3394 (DeepL translation) + - "㎕": [T: "mikroliter"] # 0x3395 (en: 'microliters', DeepL translation) + - "㎖": [T: "milliliter"] # 0x3396 (en: 'milliliters', DeepL translation) + - "㎗": [T: "deciliter"] # 0x3397 (en: 'deciliters', DeepL translation) + - "㎘": [T: "kiloliter"] # 0x3398 (en: 'kiloliters', DeepL translation) + - "㎙": [T: "femtométer"] # 0x3399 (en: 'femtometers', DeepL translation) + - "㎚": [T: "nanométer"] # 0x339a (en: 'nanometers', DeepL translation) + - "㎛": [T: "mikrométer"] # 0x339b (en: 'micrometers', DeepL translation) + - "㎜": [T: "milliméter"] # 0x339c (en: 'millimeters', DeepL translation) + - "㎝": [T: "centiméter"] # 0x339d (en: 'centimeters', DeepL translation) + - "㎞": [T: "kilométer"] # 0x339e (en: 'kilometers', DeepL translation) + - "㎟": [T: "négyzet milliméter"] # 0x339f (en: 'millimeters squared', DeepL translation) + - "㎠": [T: "négyzet centiméter"] # 0x33a0 (en: 'centimeters squared', DeepL translation) + - "㎡": [T: "négyzet méter"] # 0x33a1 (en: 'meters squared', DeepL translation) + - "㎢": [T: "négyzet kilométer"] # 0x33a2 (en: 'kilometers squared', DeepL translation) + - "㎣": [T: "köbmilliméter"] # 0x33a3 (en: 'millimeters cubed', DeepL translation) + - "㎤": [T: "köbcentiméter"] # 0x33a4 (en: 'centimeters cubed', DeepL translation) + - "㎥": [T: "köbméter"] # 0x33a5 (en: 'meters cubed', DeepL translation) + - "㎦": [T: "köbkilométer"] # 0x33a6 (en: 'kilometers cubed', DeepL translation) + - "㎧": [T: "méter per másodperc"] # 0x33a7 (en: 'meters per second', DeepL translation) + - "㎨": [T: "négyzetméter per másodperc"] # 0x33a8 (en: 'meters per second squared', DeepL translation) + - "㎩": [T: "pascal"] # 0x33a9 (DeepL translation) + - "㎪": [T: "kilopascal"] # 0x33aa (en: 'kilopascals', DeepL translation) + - "㎫": [T: "megapascal"] # 0x33ab (en: 'megapascals', DeepL translation) + - "㎬": [T: "gigapascal"] # 0x33ac (en: 'gigapascals', DeepL translation) + - "㎭": [T: "radián"] # 0x33ad (en: 'rads', DeepL translation) + - "㎮": [T: "rad másodpercenként"] # 0x33ae (en: 'rads per second', DeepL translation) + - "㎯": [T: "négyzetrad per másodperc"] # 0x33af (en: 'rads per second squared', DeepL translation) + - "㎰": [T: "pikoszekundum"] # 0x33b0 (en: 'picoseconds', DeepL translation) + - "㎱": [T: "nanoszekundum"] # 0x33b1 (en: 'nanoseconds', DeepL translation) + - "㎲": [T: "mikroszekundum"] # 0x33b2 (en: 'microseconds', DeepL translation) + - "㎳": [T: "milliszekundum"] # 0x33b3 (en: 'milliseconds', DeepL translation) + - "㎴": [T: "pikovolt"] # 0x33b4 (en: 'picovolts', DeepL translation) + - "㎵": [T: "nanovolt"] # 0x33b5 (en: 'nanovolts', DeepL translation) + - "㎶": [T: "mikrovolt"] # 0x33b6 (en: 'microvolts', DeepL translation) + - "㎷": [T: "millivolt"] # 0x33b7 (en: 'millivolts', DeepL translation) + - "㎸": [T: "kilovolt"] # 0x33b8 (en: 'kilovolts', DeepL translation) + - "㎹": [T: "megavolt"] # 0x33b9 (en: 'megavolts', DeepL translation) + - "㎺": [T: "pikowatt"] # 0x33ba (en: 'picowatts', DeepL translation) + - "㎻": [T: "nanowatt"] # 0x33bb (en: 'nanowatts', DeepL translation) + - "㎼": [T: "mikrowatt"] # 0x33bc (en: 'microwatts', DeepL translation) + - "㎽": [T: "milliwatt"] # 0x33bd (en: 'milliwatts', DeepL translation) + - "㎾": [T: "kilowatt"] # 0x33be (en: 'kilowatts', DeepL translation) + - "㎿": [T: "megawatt"] # 0x33bf (en: 'megawatts', DeepL translation) + - "㏀": [T: "kilo-ohm"] # 0x33c0 (en: 'kilo-ohms', DeepL translation) + - "㏁": [T: "megaohm"] # 0x33c1 (en: 'megaohms', DeepL translation) + - "㏂": [T: "attométer"] # 0x33c2 (en: 'attometers', DeepL translation) + - "㏃": [T: "becquerel"] # 0x33c3 (en: 'becquerels', DeepL translation) + - "㏄": [T: "köbcentiméter"] # 0x33c4 (en: 'cubic centimeters', DeepL translation) + - "㏅": [T: "kandeláber"] # 0x33c5 (en: 'candelas', DeepL translation) + - "㏆": [T: "coulomb kilogrammonként"] # 0x33c6 (en: 'coulombs per kilogram', DeepL translation) + - "㏇": [T: "nagybetűs c, o, pont"] # 0x33c7 (I have no idea what this is) (en: 'cap C, o, period', DeepL translation) + - "㏈": [T: "decibel"] # 0x33c8 (en: 'decibels', DeepL translation) + - "㏉": [T: "szürke"] # 0x33c9 (en: 'grays', DeepL translation) + - "㏊": [T: "hektár"] # 0x33ca (en: 'hectares', DeepL translation) + - "㏋": [T: "lóerő"] # 0x33cb (en: 'horsepower', DeepL translation) + - "㏌": [T: "hüvelyk"] # 0x33cc (en: 'inches', DeepL translation) + - "㏍": [T: "kilokelvin"] # 0x33cd (en: 'kilokelvins', DeepL translation) + - "㏎": [T: "kilométer"] # 0x33ce (en: 'kilometers', DeepL translation) + - "㏏": [T: "csomó"] # 0x33cf (en: 'knots', DeepL translation) + - "㏐": [T: "lumen"] # 0x33d0 (en: 'lumens', DeepL translation) + - "㏑": [T: "természetes logaritmus"] # 0x33d1 (en: 'natural log', DeepL translation) + - "㏒": [T: "logaritmus"] # 0x33d2 (en: 'logarithm', DeepL translation) + - "㏓": [T: "lux"] # 0x33d3 (DeepL translation) + - "㏔": [T: "millibarn"] # 0x33d4 (en: 'millibarns', DeepL translation) + - "㏕": [T: "mérföld"] # 0x33d5 (en: 'mills', DeepL translation) + - "㏖": [T: "mól"] # 0x33d6 (en: 'moles', DeepL translation) + - "㏗": [T: "p h"] # 0x33d7 (DeepL translation) + - "㏘": [T: "pikométer"] # 0x33d8 (en: 'picometers', DeepL translation) + - "㏙": [T: "milliomodrész"] # 0x33d9 (en: 'parts per million', DeepL translation) + - "㏚": [T: "petaroentgens"] # 0x33da (DeepL translation) + - "㏛": [T: "szteradiánok"] # 0x33db (en: 'steradians', DeepL translation) + - "㏜": [T: "szivert"] # 0x33dc (en: 'sieverts', DeepL translation) + - "㏝": [T: "weber"] # 0x33dd (DeepL translation) + - "㏞": [T: "volt per méter"] # 0x33de (en: 'volts per meter', DeepL translation) + - "㏟": [T: "amper per méter"] # 0x33df (en: 'amps per meter', DeepL translation) + - "㏿": [T: "gallon"] # 0x33ff (en: 'gallons', DeepL translation) + - "": [T: "egyenlő az alábbi kalappal"] # 0xe900 (en: 'equals with hat below', DeepL translation) + - "": [T: "egyenlő a fenti pluszjellel"] # 0xe901 (en: 'equals with plus above', DeepL translation) + - "": [T: "egyenlő a lenti pluszjellel"] # 0xe902 (en: 'equals with plus below', DeepL translation) + - "": [T: "tilde, plusz jellel a tetején"] # 0xe903 (en: 'tilde with plus above', DeepL translation) + - "": [T: "tilde, plusz jellel az alján"] # 0xe904 (en: 'tilde with plus below', DeepL translation) + - "": [T: "egyenlő kétszerese nagyobb mint"] # 0xe908 (en: 'equal double over greater than', DeepL translation) + - "": [T: "egyenlő kétszerese kevesebb mint"] # 0xe909 (en: 'equal double over less than', DeepL translation) + - "": [T: "tartalmazza vagy egyenlő ezzel:"] # 0xe90a (en: 'contains or equal to', DeepL translation) + - "": [T: "szuperhalmaza vagy egyenlő ezzel:"] # 0xe90b (en: 'superset of or equal to', DeepL translation) + - "": [T: "részhalmaza vagy egyenlő ezzel:"] # 0xe90c (en: 'subset of or equal to', DeepL translation) + - "": [T: "egyenlő felett kisebb, mint"] # 0xe90d (en: 'equal over less than', DeepL translation) + - "": [T: "eleme vagy egyenlő ezzel:"] # 0xe912 (en: 'element of or equal to', DeepL translation) + - "": [T: "egyenlő vagy nagyobb, mint"] # 0xe913 (en: 'equal to or greater than', DeepL translation) + - "": [T: "hozzávetőleges szuperhalmaza ennek:"] # 0xe914 (en: 'approximate superset of', DeepL translation) + - "": [T: "megközelítő részhalmaza ennek:"] # 0xe915 (en: 'approximate subset of', DeepL translation) + - "": [T: "ponttal rendelkező, a következő szuperhalmaza tartalmazza az alrelációt"] # 0xe916 (DeepL translation) + - "": [T: "részhalmaza ponttal együtt szerepel alrelációként."] # 0xe917 (en: 'subset of with dot is included in as sub relation', DeepL translation) + - "": [T: "egyenlő az alatta lévő ponttal"] # 0xe918 (en: 'equal with dot below', DeepL translation) + - "": [T: "bal pont a mínusz felett a jobb pont felett"] # 0xe919 (en: 'left dot over minus over right dot', DeepL translation) + - "": [T: "jobb pont a mínusz felett a bal pont felett"] # 0xe91a (en: 'right dot over minus over left dot', DeepL translation) + - "": [T: "majdnem egyenlő a mínusszal"] # 0xe91f (en: 'almost equal to minus', DeepL translation) + - "": [T: "dupla négyzet alakú csésze"] # 0xe920 (en: 'double square cup', DeepL translation) + - "": [T: "dupla négyzet nagybetű"] # 0xe921 (en: 'double square cap', DeepL translation) + - "": [T: "kisebb, mint egyenlő vagy nagyobb, mint"] # 0xe922 (en: 'less than equal to or greater than', DeepL translation) + - "": [T: "tilde ponttal"] # 0xe924 (en: 'tilde with dot', DeepL translation) + - "": [T: "tilde két ponttal"] # 0xe925 (en: 'tilde with two dots', DeepL translation) + - "": [T: "kisebb, mint nagyobb vagy egyenlő"] # 0xe926 (en: 'less than greater than or equal to', DeepL translation) + - "": [T: "nagyobb, mint kisebb vagy egyenlő"] # 0xe927 (en: 'greater than less than or equal to', DeepL translation) + - "": [T: "egyenértékű vagy kisebb, mint"] # 0xe928 (en: 'equivalent to or less than', DeepL translation) + - "": [T: "egyenértékű vagy nagyobb, mint"] # 0xe929 (en: 'equivalent to or greater than', DeepL translation) + - "": [T: "bal oldali nyitott doboz operátor"] # 0xe92a (en: 'left open box operator', DeepL translation) + - "": [T: "jobb oldali nyitott doboz operátor"] # 0xe92b (en: 'right open box operator', DeepL translation) + - "": [T: "azonos a ponttal"] # 0xe92c (en: 'identical to with dot', DeepL translation) + - "": [T: "nagyobb, mint egyenlő vagy kisebb, mint"] # 0xe92d (en: 'greater than equal to or less than', DeepL translation) + - "": [T: "sávos operátor"] # 0xe92e (en: 'bar operator', DeepL translation) + - "": [T: "kettős sávos operátor"] # 0xe92f (en: 'double bar operator', DeepL translation) + - "": [T: "háromszoros sávos operátor"] # 0xe930 (en: 'triple bar operator', DeepL translation) + - "": [T: "kisebb, vagy megközelítőleg egyenlő"] # 0xe932 (en: 'less than or approximately equal to', DeepL translation) + - "": [T: "nagyobb, vagy megközelítőleg egyenlő"] # 0xe933 (en: 'greater than or approximately equal to', DeepL translation) + - "": [T: "beágyazott kisebb, mint"] # 0xe936 (en: 'nested less than', DeepL translation) + - "": [T: "beágyazott nagyobb, mint"] # 0xe937 (en: 'nested greater than', DeepL translation) + - "": [T: "megelőzi vagy egyenértékű ezzel:"] # 0xe93a (en: 'precedes or equivalent to', DeepL translation) + - "": [T: "követi, vagy egyenértékű ezzel:"] # 0xe93b (en: 'succeeds or equivalent to', DeepL translation) + - "": [T: "megelőzi az egyenlőt"] # 0xe940 (en: 'precedes over equal', DeepL translation) + - "": [T: "követi az egyenlőt"] # 0xe941 (en: 'succeeds over equal', DeepL translation) + - "": [T: "kisebb egyenlő ferde nagyobb"] # 0xe942 (en: 'less equal slanted greater', DeepL translation) + - "": [T: "nagyobb egyenlő ferde kisebb"] # 0xe943 (en: 'greater equal slanted less', DeepL translation) + - "": [T: "kielégíti"] # 0xe948 (en: 'satisfied by', DeepL translation) + - "": [T: "lusta s"] # 0xe949 (DeepL translation) + - "": [T: "nem állítás"] # 0xe94a (en: 'not assertion', DeepL translation) + - "": [T: "kettős egyenlő"] # 0xe94b (en: 'double equal', DeepL translation) + - "": [T: "hármas egyenlő"] # 0xe94c (en: 'triple equal', DeepL translation) + - "": [T: "késleltetett szabály"] # 0xe94d (en: 'rule delayed', DeepL translation) + - "": [T: "alias elválasztójel"] # 0xe94e (en: 'alias delimiter', DeepL translation) + - "": [T: "normál alcsoportja sávval"] # 0xe950 (en: 'normal subgroup of with bar', DeepL translation) + - "": [T: "normál alcsoportként tartalmaz sávval"] # 0xe951 (en: 'contains as normal subgroup with bar', DeepL translation) + - "": [T: "kerek implikációk"] # 0xe954 (en: 'round implies', DeepL translation) + - "": [T: "mosoly alatt sáv"] # 0xe955 (en: 'smile under bar', DeepL translation) + - "": [T: "homlokráncolás a sáv fölött"] # 0xe956 (en: 'frown over bar', DeepL translation) + - "": [T: "szuperhalmaza vagy majdnem egyenlő ezzel:"] # 0xe957 (en: 'superset of or almost equal to', DeepL translation) + - "": [T: "részhalmaza vagy majdnem egyenlő ezzel:"] # 0xe958 (en: 'subset of or almost equal to', DeepL translation) + - "": [T: "nagyobb, mint majdnem egyenlő vagy kisebb, mint"] # 0xe959 (en: 'greater than almost equal to or less than', DeepL translation) + - "": [T: "kisebb, mint majdnem egyenlő vagy nagyobb, mint"] # 0xe95a (en: 'less than almost equal or greater than', DeepL translation) + - "": [T: "dupla logikai vagy"] # 0xe95c (en: 'double logical or', DeepL translation) + - "": [T: "dupla logikai és"] # 0xe95d (en: 'double logical and', DeepL translation) + - "": [T: "logikai vagy alatta kettős vonallal"] # 0xe95e (en: 'logical or with double bar below', DeepL translation) + - "": [T: "logikai vagy alatta vonallal"] # 0xe95f (en: 'logical or with bar below', DeepL translation) + - "": [T: "majdnem egyenlő az egyenlőnél"] # 0xe962 (en: 'almost equal over equal', DeepL translation) + - "": [T: "balra mutató háromszög felezővonallal"] # 0xe964 (en: 'left pointing triangle with bisecting bar', DeepL translation) + - "": [T: "jobbra mutató háromszög felezővonallal"] # 0xe965 (en: 'right pointing triangle with bisecting bar', DeepL translation) + - "": [T: "egyenlőségjel pontozott felső vonallal"] # 0xe966 (en: 'equals with dotted top line', DeepL translation) + - "": [T: "kettőspont előzi meg"] # 0xe967 (en: 'precedes with colon', DeepL translation) + - "": [T: "kettőspont követi"] # 0xe968 (en: 'succeeds with colon', DeepL translation) + - "": [T: "kisebb vagy egyenlő ferdeségű"] # 0xe969 (en: 'smaller than or equal slanted', DeepL translation) + - "": [T: "nagyobb vagy egyenlő ferdeségű"] # 0xe96a (en: 'larger than or equal slanted', DeepL translation) + - "": [T: "beágyazott sokkal kisebb, mint"] # 0xe96b (en: 'nested very much less than', DeepL translation) + - "": [T: "beágyazott sokkal nagyobb, mint"] # 0xe96c (en: 'nested very much greater than', DeepL translation) + - "": [T: "különbség a variánsok között"] # 0xe96d (en: 'difference between variant', DeepL translation) + - "": [T: "kisebb, mint nagyobb, mint az átfedés"] # 0xe96e (en: 'less than greater than overlay', DeepL translation) + - "": [T: "logikai vagy logikai és átfedés"] # 0xe96f (en: 'logical or logical and overlay', DeepL translation) + - "": [T: "szuperhalmaz felett szuperhalmaz"] # 0xe970 (DeepL translation) + - "": [T: "részhalmaz felett részhalmaz"] # 0xe971 (en: 'subset over subset', DeepL translation) + - "": [T: "szuperhalmaz felett részhalmaz"] # 0xe972 (DeepL translation) + - "": [T: "részhalmaz felett szuperhalmaz"] # 0xe973 (en: 'subset over superset', DeepL translation) + - "": [T: "háromszoros függőleges vonal"] # 0xe979 (en: 'triple vertical bar', DeepL translation) + - "": [T: "párosított négyes függőleges pontok"] # 0xe97a (en: 'paired quadruple vertical dots', DeepL translation) + - "": [T: "merőlegesen a sáv fölött"] # 0xe97b (en: 'perpendicular over bar', DeepL translation) + - "": [T: "balra forduló kettős függőleges sáv"] # 0xe97c (en: 'left turnstile double vertical bar', DeepL translation) + - "": [T: "kettős balra forduló kettős függőleges sáv"] # 0xe97d (en: 'double left turnstile double vertical bar', DeepL translation) + - "": [T: "merőleges a fordított merőleges felett"] # 0xe97e (en: 'perpendicular over inverted perpendicular', DeepL translation) + - "": [T: "dupla balra forduló függőleges sáv"] # 0xe97f (en: 'double left turnstile vertical bar', DeepL translation) + - "": [T: "gömbszöget nyitó"] # 0xe980 (en: 'spherical angle opening up', DeepL translation) + - "": [T: "dupla perjel"] # 0xe981 (en: 'double slash', DeepL translation) + - "": [T: "derékszög sarokkal"] # 0xe982 (en: 'right angle with corner', DeepL translation) + - "": [T: "bekarikázott függőleges vonal"] # 0xe984 (en: 'circled vertical bar', DeepL translation) + - "": [T: "bekarikázott osztásjel"] # 0xe985 (en: 'circled division sign', DeepL translation) + - "": [T: "szaggatott solidus"] # 0xe986 (en: 'dashed solidus', DeepL translation) + - "": [T: "szaggatott fordított perjel"] # 0xe987 (en: 'dashed backslash', DeepL translation) + - "": [T: "szaggatott középvonal"] # 0xe988 (en: 'dashed mid line', DeepL translation) + - "": [T: "szaggatott függőleges vonal"] # 0xe989 (en: 'dashed vertical bar', DeepL translation) + - "": [T: "merőleges az s-re"] # 0xe98a (en: 'perpendicular with s', DeepL translation) + - "": [T: "szög s-sel"] # 0xe98b (en: 'angle with s', DeepL translation) + - "": [T: "gömb alakú szögnyílás balra"] # 0xe98c (en: 'spherical angle opening left', DeepL translation) + - "": [T: "balra nyíló szög"] # 0xe98d (en: 'angle opening left', DeepL translation) + - "": [T: "függőleges sáv dupla horoggal"] # 0xe98e (en: 'vertical bar with double hook', DeepL translation) + - "": [T: "közepes pont operátor szabad gyök"] # 0xe98f (en: 'medium dot operator free radical', DeepL translation) + - "": [T: "fehér felfelé mutató háromszög a sáv felett"] # 0xe990 (en: 'white up pointing triangle above bar', DeepL translation) + - "": [T: "azonos és párhuzamos"] # 0xe991 (en: 'identical and parallel to', DeepL translation) + - "": [T: "szuperszorzat"] # 0xe992 (en: 'smash product', DeepL translation) + - "": [T: "hármas sáv operátor vízszintes vonallal"] # 0xe993 (en: 'triple bar operator with horizontal bar', DeepL translation) + - "": [T: "azonos a kettős vonallal"] # 0xe994 (en: 'identical to with double slash', DeepL translation) + - "": [T: "háromszoros keresztezett sávok"] # 0xe995 (en: 'triple crossed bars', DeepL translation) + - "": [T: "függőleges sáv a kör felett"] # 0xe996 (en: 'vertical bar over circle', DeepL translation) + - "": [T: "függőlegesen arányos"] # 0xe997 (en: 'vertical proportional to', DeepL translation) + - "": [T: "fekete utolsó negyed hold"] # 0xe998 (en: 'black last quarter moon', DeepL translation) + - "": [T: "fekete első negyed hold"] # 0xe999 (en: 'black first quarter moon', DeepL translation) + - "": [T: "negatív szinuszhullám"] # 0xe9a0 (en: 'negative sine wave', DeepL translation) + - "": [T: "zárójelben lévő pont"] # 0xe9a1 (en: 'parenthesized dot', DeepL translation) + - "": [T: "zárójelek"] # 0xe9a2 (en: 'parens', DeepL translation) + - "": [T: "fehér mosoly"] # 0xe9a3 (en: 'white smile', DeepL translation) + - "": [T: "fehér homlokráncolás"] # 0xe9a4 (en: 'white frown', DeepL translation) + - "": [T: "hatszög"] # 0xe9a5 (en: 'hexagon', DeepL translation) + - "": [T: "egyenértékű a plusz feletti értékkel"] # 0xe9a6 (en: 'equivalent to over plus', DeepL translation) + - "": [T: "plusz felett egyenértékű"] # 0xe9a7 (en: 'plus over equivalent to', DeepL translation) + - "": [T: "metszéspont talpakkal"] # 0xe9b0 (en: 'intersection serifs', DeepL translation) + - "": [T: "unió talpakkal"] # 0xe9b1 (en: 'union serifs', DeepL translation) + - "": [T: "négyzet alakú metszéspont talpakkal"] # 0xe9b2 (en: 'square intersection serifs', DeepL translation) + - "": [T: "négyzet alakú unió talpakkal"] # 0xe9b3 (en: 'square union serifs', DeepL translation) + - "": [T: "megelőzi az egyenértékűt vagy követi azt"] # 0xe9e0 (en: 'precedes equivalent to or succeeds', DeepL translation) + - "": [T: "követi az egyenértékűt vagy megelőzi azt"] # 0xe9e1 (en: 'succeeds equivalent to or precedes', DeepL translation) + - "": [T: "megelőzi a majdnem egyenlő értéket vagy követi azt"] # 0xe9e2 (en: 'precedes almost equal to or succeeds', DeepL translation) + - "": [T: "követi a majdnem egyenlő értéket vagy megelőzi azt"] # 0xe9e3 (en: 'succeeds almost equal to or precedes', DeepL translation) + - "": [T: "kisebb, mint egyenértékű vagy nagyobb, mint"] # 0xe9f0 (en: 'less than equivalent to or greater than', DeepL translation) + - "": [T: "nagyobb, mint egyenértékű vagy kisebb, mint"] # 0xe9f1 (en: 'greater than equivalent to or less than', DeepL translation) + - "": [T: "nem sokkal kisebb, mint"] # 0xea00 (en: 'not vert much less than', DeepL translation) + - "": [T: "nem sokkal nagyobb, mint"] # 0xea01 (en: 'not vert much greater than', DeepL translation) + - "": [T: "nem sokkal kisebb, mint a variáns"] # 0xea02 (en: 'not much less than variant', DeepL translation) + - "": [T: "nem sokkal nagyobb, mint a variáns"] # 0xea03 (en: 'not much greater than variant', DeepL translation) + - "": [T: "kevesebb függőleges nem dupla egyenlő"] # 0xea04 (en: 'less vert not double equals', DeepL translation) + - "": [T: "A gt vert nem kétszeres egyenlő"] # 0xea05 (en: 'gt vert not double equals', DeepL translation) + - "": [T: "nem kisebb vagy egyenlő"] # 0xea06 (en: 'not less than or equal to', DeepL translation) + - "": [T: "nem nagyobb vagy egyenlő"] # 0xea07 (en: 'not greater than or equal to', DeepL translation) + - "": [T: "sem egyenlő, sem kisebb, mint"] # 0xea09 (en: 'neither equal to nor less than', DeepL translation) + - "": [T: "nem tartalmazza vagy egyenlő ezzel:"] # 0xea0a (en: 'does not contain or equal to', DeepL translation) + - "": [T: "sem szuperhalmaza, sem egyenlő vele"] # 0xea0b (en: 'neither superset of nor equal to', DeepL translation) + - "": [T: "sem részhalmaza, sem egyenlő vele"] # 0xea0c (en: 'neither subset of nor equal to', DeepL translation) + - "": [T: "fordított solidus részhalmaza ennek:"] # 0xea0d (en: 'reverse solidus subset', DeepL translation) + - "": [T: "sem egyenlő, sem nagyobb, mint"] # 0xea0e (en: 'neither equal to nor greater than', DeepL translation) + - "": [T: "nem mínusz tilde operátor"] # 0xea0f (en: 'not minus tilde operator', DeepL translation) + - "": [T: "sem egyenlő, sem kisebb, mint"] # 0xea10 (en: 'neither equal to nor less than', DeepL translation) + - "": [T: "nem tilde operátor"] # 0xea11 (en: 'not tilde operator', DeepL translation) + - "": [T: "nem eleme vagy egyenlő ezzel:"] # 0xea12 (en: 'not element of or equal to', DeepL translation) + - "": [T: "sem egyenlő, sem nagyobb, mint"] # 0xea13 (en: 'neither equal to nor greater than', DeepL translation) + - "": [T: "közel sem egyenlő"] # 0xea14 (en: 'not almost equal', DeepL translation) + - "": [T: "nem követi hasonló"] # 0xea15 (en: 'not succeeds similar', DeepL translation) + - "": [T: "kisebb vagy ferde egyenlő perjellel"] # 0xea16 (en: 'less than or slanted equal to with slash', DeepL translation) + - "": [T: "nagyobb vagy ferde egyenlő perjellel"] # 0xea17 (en: 'greater than or slanted equal to with slash', DeepL translation) + - "": [T: "szuperhalmaz solidussal"] # 0xea1a (en: 'superset solidus', DeepL translation) + - "": [T: "nem tartalmazza"] # 0xea1b (en: 'does not contain', DeepL translation) + - "": [T: "nem kisebb vagy egyenlő, mint"] # 0xea1d (en: 'not less than or equal to', DeepL translation) + - "": [T: "nem nagyobb vagy egyenlő, mint"] # 0xea1e (en: 'not greater than or equal to', DeepL translation) + - "": [T: "közel sem egyenlő a mínusszal"] # 0xea1f (en: 'not almost equal to minus', DeepL translation) + - "": [T: "negált halmazhoz tartozik, pont felett"] # 0xea22 (en: 'negated set membership dot above', DeepL translation) + - "": [T: "nem függőleges szög"] # 0xea2c (en: 'not vert angle', DeepL translation) + - "": [T: "nem párhuzamosan ferde"] # 0xea2d (en: 'not parallel slanted', DeepL translation) + - "": [T: "nem sáv operátor"] # 0xea2e (en: 'not bar operator', DeepL translation) + - "": [T: "nem dupla sáv operátor"] # 0xea2f (en: 'not double bar operator', DeepL translation) + - "": [T: "nem hármas sáv operátor"] # 0xea30 (en: 'not triple bar operator', DeepL translation) + - "": [T: "kisebb, de nem megközelítőleg egyenlő"] # 0xea32 (en: 'less than but not approximately equal to', DeepL translation) + - "": [T: "nagyobb, de nem megközelítőleg egyenlő"] # 0xea33 (en: 'greater than but not approximately equal to', DeepL translation) + - "": [T: "kisebb vagy nem egyenlő"] # 0xea34 (en: 'less than or not equal to', DeepL translation) + - "": [T: "nagyobb vagy nem egyenlő"] # 0xea35 (en: 'greater than or not equal to', DeepL translation) + - "": [T: "nem beágyazott kisebb, mint"] # 0xea36 (en: 'not nested less than', DeepL translation) + - "": [T: "nem beágyazott nagyobb, mint"] # 0xea37 (en: 'not nested greater than', DeepL translation) + - "": [T: "nem sokkal kisebb, mint"] # 0xea38 (en: 'not much less than', DeepL translation) + - "": [T: "nem sokkal nagyobb, mint"] # 0xea39 (en: 'not much greater than', DeepL translation) + - "": [T: "megelőzi, de nem egyenértékű ezzel:"] # 0xea3a (en: 'precedes but not equivalent to', DeepL translation) + - "": [T: "követi, de nem egyenértékű ezzel:"] # 0xea3b (en: 'succeeds but not equivalent to', DeepL translation) + - "": [T: "megelőzi, de nem egyenlő ezzel:"] # 0xea3c (en: 'precedes but not equal to', DeepL translation) + - "": [T: "követi, de nem egyenlő ezzel:"] # 0xea3d (en: 'succeeds but not equal to', DeepL translation) + - "": [T: "nem egyenlő vagy megelőzi:"] # 0xea3e (en: 'does not equal or precede', DeepL translation) + - "": [T: "nem egyenlő vagy nem követi:"] # 0xea3f (en: 'does not equal or succeed', DeepL translation) + - "": [T: "megelőzi, de nem egyenlő ezzel:"] # 0xea40 (en: 'precedes but not equal to', DeepL translation) + - "": [T: "követi, de nem egyenlő ezzel:"] # 0xea41 (en: 'succeeds but not equal to', DeepL translation) + - "": [T: "nem részhalmaza és nem egyenlő vele:"] # 0xea42 (en: 'not subset of nor equal to', DeepL translation) + - "": [T: "nem szuperhalmaza és nem egyenlő vele:"] # 0xea43 (DeepL translation) + - "": [T: "részhalmaza vagy nem egyenlő ezzel:"] # 0xea44 (en: 'subset of or not equal to', DeepL translation) + - "": [T: "szuperhalmaza vagy nem egyenlő ezzel:"] # 0xea45 (en: 'superset of or not equal to', DeepL translation) + - "": [T: "nem részhalmaza és nem egyenlő ezzel:"] # 0xea46 (en: 'not subset of nor equal to', DeepL translation) + - "": [T: "nem szuperhalmaza és nem egyenlő ezzel:"] # 0xea47 (DeepL translation) + - "": [T: "nem háromszor kisebb, mint"] # 0xea48 (en: 'not triple less than', DeepL translation) + - "": [T: "nem háromszor nagyobb, mint"] # 0xea49 (en: 'not triple greater than', DeepL translation) + - "": [T: "nem előzi meg az egyenlőségjelet"] # 0xea4c (en: 'not precedes equals', DeepL translation) + - "": [T: "nem követi az egyenlőségjelet"] # 0xea4d (en: 'not succeeds equals', DeepL translation) + - "": [T: "nem normál alcsoportja a sávnak"] # 0xea50 (en: 'not normal subgroup of with bar', DeepL translation) + - "": [T: "nem tartalmaz normál alcsoportként sávos alcsoportot"] # 0xea51 (en: 'does not contain as normal subgroup with bar', DeepL translation) + - "": [T: "nem különbözik a(z)"] # 0xea52 (en: 'not difference between', DeepL translation) + - "": [T: "geometriailag nem egyenértékű ezzel:"] # 0xea53 (en: 'not geometrically equivalent to', DeepL translation) + - "": [T: "nem függőlegesen hasonló ezzel:"] # 0xea54 (en: 'not vert similar', DeepL translation) + - "": [T: "nem egyenlő vagy hasonló ezzel:"] # 0xea55 (en: 'not equal or similar', DeepL translation) + - "": [T: "nem függőlegesen megközelítőleg"] # 0xea56 (en: 'not vert approximate', DeepL translation) + - "": [T: "nem megközelítőleg azonos ezzel:"] # 0xea57 (en: 'not approximately identical to', DeepL translation) + - "": [T: "nem dudoros egyenlőségjel"] # 0xea58 (en: 'not bumpy equals', DeepL translation) + - "": [T: "nem dudoros egyetlen egyenlő"] # 0xea59 (en: 'not bumpy single equals', DeepL translation) + - "": [T: "nem egyenlő pont"] # 0xea5a (en: 'not equal dot', DeepL translation) + - "": [T: "fordított nem egyenértékű"] # 0xea5b (en: 'reverse not equivalent', DeepL translation) + - "": [T: "nem négyzet alakú részhalmaza ennek:"] # 0xea60 (en: 'not square subset', DeepL translation) + - "": [T: "nem négyzet alakú szuperhalmaza ennek:"] # 0xea61 (en: 'not square superset', DeepL translation) + - "": [T: "közel sem egyenlő az egyenlőnél"] # 0xea62 (en: 'not almost equal over equal', DeepL translation) + - "": [T: "nem teljesen egyenértékű ezzel:"] # 0xea63 (en: 'not strictly equivalent to', DeepL translation) + - "": [T: "nem egybevágó pont"] # 0xea64 (en: 'not congruent dot', DeepL translation) + - "": [T: "fordított nem egyenlő"] # 0xea65 (en: 'reverse not equal', DeepL translation) + - "": [T: "nem függőleges balra mutató háromszög egyenlő"] # 0xea70 (en: 'not vert left triangle equals', DeepL translation) + - "": [T: "nem függőleges balra mutató háromszög egyenlő"] # 0xea71 (en: 'not vert right triangle equals', DeepL translation) + - "": [T: "nem részleges"] # 0xea80 (en: 'not partial', DeepL translation) + - "": [T: "nyíl díszítő hosszabbító"] # 0xeb00 (en: 'arrow embellishment extender', DeepL translation) + - "": [T: "jobbra mutató nyíl a balra mutató nyíl felett"] # 0xeb01 (en: 'arrow right over arrow left', DeepL translation) + - "": [T: "jobbra mutató nyíl a balra mutató nyíl felett"] # 0xeb02 (en: 'arrow right over arrow left', DeepL translation) + - "": [T: "szigony jobbra a szigony balra felett"] # 0xeb03 (en: 'harpoon right over harpoon left', DeepL translation) + - "": [T: "szigony jobbra a szigony balra felett"] # 0xeb04 (en: 'harpoon right over harpoon left', DeepL translation) + - "": [T: "dupla északkelet délnyugat irányú nyíl"] # 0xeb05 (en: 'double arrow northeast southwest', DeepL translation) + - "": [T: "dupla északnyugat délkelet irányú nyíl"] # 0xeb06 (en: 'double arrow northwest southeast', DeepL translation) + - "": [T: "vízszintes szigonyhosszabbító"] # 0xeb07 (en: 'horizontal harpoon extender', DeepL translation) + - "": [T: "az óramutató járásával ellentétes ívű balra mutató nyíl"] # 0xeb08 (en: 'anticlockwise arc left arrow', DeepL translation) + - "": [T: "az óramutató járásával ellentétes ívű jobbra mutató nyíl"] # 0xeb09 (en: 'anticlockwise arc right arrow', DeepL translation) + - "": [T: "nagy jobbra mutató nyíl ékezet"] # 0xeb0b (en: 'large right arrow accent', DeepL translation) + - "": [T: "nagy balra mutató nyíl ékezet"] # 0xeb0c (en: 'large left arrow accent', DeepL translation) + - "": [T: "balra mutató nyílhegy"] # 0xeb0d (en: 'left arrowhead', DeepL translation) + - "": [T: "jobbra mutató nyílhegy"] # 0xeb0e (en: 'right arrowhead', DeepL translation) + - "": [T: "nagy balra/jobbra nyíl vonalvezetéssel"] # 0xeb0f (en: 'large left right arrow with stroke', DeepL translation) + - "": [T: "vízszintes dupla nyílhosszabbító"] # 0xeb10 (en: 'horizontal double arrow extender', DeepL translation) + - "": [T: "nagy balra jobbra dupla nyíl vonalvezetéssel"] # 0xeb11 (en: 'large left right double arrow with stroke', DeepL translation) + - "": [T: "lefelé mutató nyíl a felfelé mutató nyíltól balra"] # 0xeb12 (en: 'down arrow left of up arrow', DeepL translation) + - "": [T: "balra mutató nyíl lefelé mutató sarokkal"] # 0xeb13 (en: 'left arrow with corner down', DeepL translation) + - "": [T: "jobbra mutató nyíl felfelé mutató sarokkal"] # 0xeb14 (en: 'right arrow with corner up', DeepL translation) + - "": [T: "balra mutató nyíl felfelé mutató sarokkal"] # 0xeb15 (en: 'left arrow with corner up', DeepL translation) + - "": [T: "az óramutató járásával ellentétes irányú felső félköríves nyíl plusszal"] # 0xeb16 (en: 'anticlockwise top semicircle arrow with plus', DeepL translation) + - "": [T: "az óramutató járásával megegyező irányú felső félköríves nyíl mínusszal"] # 0xeb17 (en: 'clockwise top semicircle arrow with minus', DeepL translation) + - "": [T: "jobbra mutató nyíl farokkal és vonallal"] # 0xeb18 (en: 'right arrow with tail with stroke', DeepL translation) + - "": [T: "jobb szigony lefelé"] # 0xeb19 (en: 'right harpoon down', DeepL translation) + - "": [T: "bal szigony lefelé"] # 0xeb1a (en: 'left harpoon down', DeepL translation) + - "": [T: "bal jobb szigony lefelé"] # 0xeb1b (en: 'left right harpoon down', DeepL translation) + - "": [T: "bal jobb szigony felfelé"] # 0xeb1c (en: 'left right harpoon up', DeepL translation) + - "": [T: "fel le szigony balra"] # 0xeb1d (en: 'up down harpoon left', DeepL translation) + - "": [T: "fel le szigony jobbra"] # 0xeb1e (en: 'up down harpoon right', DeepL translation) + - "": [T: "felfelé mutató nyíl a lefelé mutató nyíl jobb oldalán"] # 0xeb1f (en: 'up arrow to the right of down arrow', DeepL translation) + - "": [T: "bal szigonnyal a rúd felé, a szár felfelé áll"] # 0xeb20 (en: 'left harpoon to bar with barb up', DeepL translation) + - "": [T: "jobb szigonnyal a rúd felé, a szár felfelé áll"] # 0xeb21 (en: 'right harpoon to bar with barb up', DeepL translation) + - "": [T: "bal szigonnyal a rúd felé, a szár lefelé áll"] # 0xeb22 (en: 'left harpoon to bar with barb down', DeepL translation) + - "": [T: "jobb szigonnyal a rúd felé, a szár lefelé áll"] # 0xeb23 (en: 'right harpoon to bar with barb down', DeepL translation) + - "": [T: "bal oldali szigony, a rúdról felfelé álló szárral"] # 0xeb24 (en: 'left harpoon from bar with barb up', DeepL translation) + - "": [T: "jobb oldali szigony, a rúdról felfelé álló szárral"] # 0xeb25 (en: 'right harpoon from bar with barb up', DeepL translation) + - "": [T: "bal oldali szigony, a rúdról lefelé álló szárral"] # 0xeb26 (en: 'left harpoon from bar with barb down', DeepL translation) + - "": [T: "jobb oldali szigony, a rúdról lefelé álló szárral"] # 0xeb27 (en: 'right harpoon from bar with barb down', DeepL translation) + - "": [T: "felfelé álló szigony, a rúdtól balra tartó horoggal"] # 0xeb28 (en: 'up harpoon to bar with barb left', DeepL translation) + - "": [T: "lefelé álló szigony, a rúdtól balra tartó horoggal"] # 0xeb29 (en: 'down harpoon to bar with barb left', DeepL translation) + - "": [T: "felfelé álló szigony, a rúdtól jobbra tartó horoggal"] # 0xeb2a (en: 'up harpoon to bar with barb right', DeepL translation) + - "": [T: "lefelé álló szigony, a rúdtól jobbra tartó horoggal"] # 0xeb2b (en: 'down harpoon to bar with barb right', DeepL translation) + - "": [T: "felfelé álló szigony, a rúdtól balra tartó horoggal"] # 0xeb2c (en: 'up harpoon from bar with barb left', DeepL translation) + - "": [T: "lefelé álló szigony, a rúdtól balra tartó horoggal"] # 0xeb2d (en: 'down harpoon from bar with barb left', DeepL translation) + - "": [T: "felfelé álló szigony, a rúdtól jobbra tartó horoggal"] # 0xeb2e (en: 'up harpoon from bar with barb right', DeepL translation) + - "": [T: "lefelé álló szigony, a rúdtól jobbra tartó horoggal"] # 0xeb2f (en: 'down harpoon from bar with barb right', DeepL translation) + - "": [T: "felfelé mutató nyíl a sávhoz"] # 0xeb30 (en: 'up arrow to bar', DeepL translation) + - "": [T: "lefelé mutató nyíl a sávhoz"] # 0xeb31 (en: 'down arrow to bar', DeepL translation) + - "": [T: "felfelé irányuló szigony a lefelé irányuló szigonytól balra"] # 0xeb32 (en: 'up harpoon to the left of down harpoon', DeepL translation) + - "": [T: "felfelé irányuló szigony a lefelé irányuló szigonytól jobbra"] # 0xeb33 (en: 'up harpoon to the right of down harpoon', DeepL translation) + - "": [T: "felfelé mutató nyílhegy"] # 0xeb34 (en: 'up arrowhead', DeepL translation) + - "": [T: "lefelé mutató nyílhegy"] # 0xeb35 (en: 'down arrowhead', DeepL translation) + - "": [T: "dupla szigony bal szárral lefelé, jobb szárral felfelé"] # 0xeb36 (en: 'double harpoon with left barb down right barb up', DeepL translation) + - "": [T: "dupla szigony bal szárral felfelé, jobb szárral lefelé"] # 0xeb37 (en: 'double harpoon with left barb up right barb down', DeepL translation) + - "": [T: "balra mutató nyíl a sáv felett"] # 0xeb38 (en: 'left arrow over bar', DeepL translation) + - "": [T: "jobbra mutató nyíl a sáv felett"] # 0xeb39 (en: 'right arrow over bar', DeepL translation) + - "": [T: "balra mutató nyíl a sáv alatt"] # 0xeb3a (en: 'left arrow under bar', DeepL translation) + - "": [T: "jobbra mutató nyíl a sáv alatt"] # 0xeb3b (en: 'right arrow under bar', DeepL translation) + - "": [T: "balra jobbra háromszoros nyíl"] # 0xeb3c (en: 'left right triple arrow', DeepL translation) + - "": [T: "dupla északkelet délkelet irányú nyíl"] # 0xeb3f (en: 'double arrow northeast southeast', DeepL translation) + - "": [T: "az óramutató járásával ellentétes irányú bal oldali félköríves nyíl"] # 0xeb40 (en: 'anticlockwise left semicircle arrow', DeepL translation) + - "": [T: "az óramutató járásával megegyező irányú balra félköríves nyíl"] # 0xeb41 (en: 'clockwise left semicircle arrow', DeepL translation) + - "": [T: "balra nyitott kör, balra jobbra nyíl"] # 0xeb42 (en: 'left open circle left right arrow', DeepL translation) + - "": [T: "jobbra mutató nyíl a tilde felett"] # 0xeb44 (en: 'right arrow over tilde', DeepL translation) + - "": [T: "balra mutató nyíl a tilde felett"] # 0xeb45 (en: 'left arrow over tilde', DeepL translation) + - "": [T: "bal szigony a sáv fölött"] # 0xeb48 (en: 'left harpoon over bar', DeepL translation) + - "": [T: "jobb szigony a sáv fölött"] # 0xeb49 (en: 'right harpoon over bar', DeepL translation) + - "": [T: "bal szigony a sáv alatt"] # 0xeb4a (en: 'left harpoon under bar', DeepL translation) + - "": [T: "jobb szigony a sáv alatt"] # 0xeb4b (en: 'right harpoon under bar', DeepL translation) + - "": [T: "guggolt fekete balra nyíl"] # 0xeb4c (en: 'squat black left arrow', DeepL translation) + - "": [T: "az óramutató járásával megegyező irányú jobbra félköríves nyíl"] # 0xeb50 (en: 'clockwise right semicircle arrow', DeepL translation) + - "": [T: "az óramutató járásával ellentétes irányú jobb oldali félköríves nyíl"] # 0xeb51 (en: 'anticlockwise right semicircle arrow', DeepL translation) + - "": [T: "balra nyitott kör balra jobbra szigony"] # 0xeb52 (en: 'left open circle left right harpoon', DeepL translation) + - "": [T: "felfelé mutató nyíl a függőleges sáv bal oldalán"] # 0xeb58 (en: 'up arrow left of vertical bar', DeepL translation) + - "": [T: "lefelé mutató nyíl a függőleges sáv bal oldalán"] # 0xeb59 (en: 'down arrow left of vertical bar', DeepL translation) + - "": [T: "felfelé mutató nyíl a függőleges sáv jobb oldalán"] # 0xeb5a (en: 'up arrow right of vertical bar', DeepL translation) + - "": [T: "lefelé mutató nyíl a függőleges sáv jobb oldalán"] # 0xeb5b (en: 'down arrow right of vertical bar', DeepL translation) + - "": [T: "jobbra mutató nyíl meghosszabbított lefelé mutató horoggal"] # 0xeb5c (en: 'right arrow with extended down hook', DeepL translation) + - "": [T: "balra mutató nyíl meghosszabbított horoggal"] # 0xeb5d (en: 'left arrow with extended hook', DeepL translation) + - "": [T: "balra mutató nyíl meghosszabbított lefelé mutató horoggal"] # 0xeb5e (en: 'left arrow with extended down hook', DeepL translation) + - "": [T: "jobbra mutató nyíl meghosszabbított horoggal"] # 0xeb5f (en: 'right arrow with extended hook', DeepL translation) + - "": [T: "nem hullámos jobbra mutató nyíl"] # 0xeb60 (en: 'not right arrow wavy', DeepL translation) + - "": [T: "nem ívelt jobbra mutató nyíl"] # 0xeb61 (en: 'not right arrow curved', DeepL translation) + - "": [T: "felfelé irányuló szigony a függőleges sáv bal oldalán"] # 0xeb68 (en: 'up harpoon left of vertical bar', DeepL translation) + - "": [T: "lefelé irányuló szigony a függőleges sáv bal oldalán"] # 0xeb69 (en: 'down harpoon left of vertical bar', DeepL translation) + - "": [T: "felfelé irányuló szigony a függőleges sáv jobb oldalán"] # 0xeb6a (en: 'up harpoon right of vertical bar', DeepL translation) + - "": [T: "lefelé irányuló szigony a függőleges sáv jobb oldalán"] # 0xeb6b (en: 'down harpoon right of vertical bar', DeepL translation) + - "": [T: "függőleges dupla nyílhosszabbító"] # 0xeb6c (en: 'vertical double arrow extender', DeepL translation) + - "": [T: "függőleges szigony bal oldali hosszabb horoggal"] # 0xeb6d (en: 'vertical harpoon with barb left extender', DeepL translation) + - "": [T: "függőleges szigony jobb oldali hosszabb horoggal"] # 0xeb6e (en: 'vertical harpoon with barb right extender', DeepL translation) + - "": [T: "jobb oldali szigony a bal szigony felett jobbra"] # 0xeb6f (en: 'right harpoon over left harpoon right', DeepL translation) + - "": [T: "jobb szigony a bal szigony felett balra"] # 0xeb70 (en: 'right harpoon over left harpoon left', DeepL translation) + - "": [T: "bal szigony a jobb szigony felett jobbra"] # 0xeb71 (en: 'left harpoon over right harpoon right', DeepL translation) + - "": [T: "bal szigony a jobb szigony felett balra"] # 0xeb72 (en: 'left harpoon over right harpoon left', DeepL translation) + - "": [T: "balra mutató nyíl a sáv nyílhegyétől"] # 0xeb73 (en: 'left arrow from bar arrowhead', DeepL translation) + - "": [T: "balra/jobbra nyíl a rúdhosszabbítóról"] # 0xeb74 (en: 'left right arrow from bar extender', DeepL translation) + - "": [T: "balra mutató nyíl a sáv végétől"] # 0xeb75 (en: 'left arrow from bar tail', DeepL translation) + - "": [T: "jobbra mutató nyíl a sáv végétől"] # 0xeb76 (en: 'right arrow from bar tail', DeepL translation) + - "": [T: "jobbra mutató nyíl a sáv nyílhegyétől"] # 0xeb77 (en: 'right arrow from bar arrowhead', DeepL translation) + - "": [T: "felfelé irányuló szigony, a rúdról horoggal balra mutató nyílheggyel"] # 0xeb78 (en: 'up harpoon from bar with barb left arrowhead', DeepL translation) + - "": [T: "jobbra mutató nyíl, a balra mutató nyíl felett jobbra"] # 0xeb79 (en: 'right arrow over left arrow right', DeepL translation) + - "": [T: "jobbra mutató nyíl, a balra mutató nyíl felett balra"] # 0xeb7a (en: 'right arrow over left arrow left', DeepL translation) + - "": [T: "balra mutató nyíl, a jobbra mutató nyíl felett jobbra"] # 0xeb7b (en: 'left arrow over right arrow right', DeepL translation) + - "": [T: "balra mutató nyíl, a jobbra mutató nyíl felett balra"] # 0xeb7c (en: 'left arrow over right arrow left', DeepL translation) + - "": [T: "felfelé mutató nyíl a sáv nyílhegyétől"] # 0xeb7d (en: 'up arrow from bar arrowhead', DeepL translation) + - "": [T: "felfelé mutató nyíl a sáv végétől"] # 0xeb7e (en: 'up arrow from bar tail', DeepL translation) + - "": [T: "lefelé mutató nyíl a sáv végétől"] # 0xeb7f (en: 'down arrow from bar tail', DeepL translation) + - "": [T: "lefelé mutató nyíl a sáv nyílhegyétől"] # 0xeb80 (en: 'down arrow from bar arrowhead', DeepL translation) + - "": [T: "lefelé irányuló szigony, a rúdtól horoggal és jobb oldali nyílheggyel"] # 0xeb81 (en: 'down harpoon from bar with barb right arrowhead', DeepL translation) + - "": [T: "felfelé szigony balra a lefelé szigony aljától"] # 0xeb82 (en: 'up harpoon to the left of down harpoon bottom', DeepL translation) + - "": [T: "felfelé irányuló szigony a lefelé irányuló szigonyhosszabbító bal oldalán"] # 0xeb83 (en: 'up harpoon to the left of down harpoon extender', DeepL translation) + - "": [T: "lefelé irányuló szigony a felső szigony tetejétől balra"] # 0xeb84 (en: 'down harpoon to the left of up harpoon top', DeepL translation) + - "": [T: "felfelé irányuló szigony balra a lefelé szigony tetejétől"] # 0xeb85 (en: 'up harpoon to the left of down harpoon top', DeepL translation) + - "": [T: "lefelé irányuló szigony a felfelé irányuló szigonyhosszabbító bal oldalán"] # 0xeb86 (en: 'down harpoon to the left of the up harpoon extender', DeepL translation) + - "": [T: "lefelé irányuló szigony a felfelé irányuló szigony aljának bal oldalán"] # 0xeb87 (en: 'down harpoon to the left of the up harpoon bottom', DeepL translation) + - "": [T: "felfelé mutató nyíl a lefelé mutató nyíl aljától balra"] # 0xeb88 (en: 'up arrow left of down arrow bottom', DeepL translation) + - "": [T: "lefelé mutató nyíl a felfelé mutató nyíl bal oldalának tetején"] # 0xeb89 (en: 'down arrow left of up arrow top', DeepL translation) + - "": [T: "felfelé mutató nyíl a lefelé mutató nyíl bal oldalának tetején"] # 0xeb8a (en: 'up arrow left of down arrow top', DeepL translation) + - "": [T: "lefelé mutató nyíl a felfelé mutató nyíl aljától balra"] # 0xeb8b (en: 'down arrow left of up arrow bottom', DeepL translation) + - "": [T: "balra/jobbra nyilak hosszabbítója"] # 0xeb8c (en: 'left right arrows extender', DeepL translation) + - "": [T: "északkeleti nyílhosszabbító"] # 0xeb8d (en: 'north east arrow extender', DeepL translation) + - "": [T: "északnyugati nyílhosszabbító"] # 0xeb8e (en: 'north west arrow extender', DeepL translation) + - "": [T: "lefelé mutató bal oldali zárójel"] # 0xec00 (en: 'down pointing brace left', DeepL translation) + - "": [T: "lefelé mutató középső zárójel"] # 0xec01 (en: 'down pointing brace mid', DeepL translation) + - "": [T: "lefelé mutató jobb oldali zárójel"] # 0xec02 (en: 'down pointing brace right', DeepL translation) + - "": [T: "vízszintes zárójel hosszabbító"] # 0xec03 (en: 'horizontal brace extender', DeepL translation) + - "": [T: "felfelé mutató bal oldali zárójel"] # 0xec04 (en: 'up pointing brace left', DeepL translation) + - "": [T: "felfelé mutató középső zárójel"] # 0xec05 (en: 'up pointing brace mid', DeepL translation) + - "": [T: "felfelé mutató jobb oldali zárójel"] # 0xec06 (en: 'up-pointing brace right', DeepL translation) + - "": [T: "bal oldali függőleges sáv"] # 0xec07 (en: 'left vertical bar', DeepL translation) + - "": [T: "jobb oldali függőleges sáv"] # 0xec08 (en: 'right vertical bar', DeepL translation) + - "": [T: "bal oldali dupla függőleges sáv"] # 0xec09 (en: 'left double vertical bar', DeepL translation) + - "": [T: "jobb oldali dupla függőleges sáv"] # 0xec0a (en: 'right double vertical bar', DeepL translation) + - "": [T: "vízszintes zárójel hosszabbító"] # 0xec0b (en: 'horizontal bracket extender', DeepL translation) + - "": [T: "szögletes zárójel alatt"] # 0xec0c (en: 'under square bracket', DeepL translation) + - "⎵": [T: "szögletes zárójel alatt"] # 0x23b5 (en: 'under square bracket', DeepL translation) + - "": [T: "szögletes zárójel felett"] # 0xec0d (en: 'over square bracket', DeepL translation) + - "⎴": [T: "szögletes zárójel felett"] # 0x23b4 (en: 'over square bracket', DeepL translation) + - "": [T: "bal oldali zárójel alatt"] # 0xec0e (en: 'under bracket left', DeepL translation) + - "": [T: "jobb oldali zárójel alatt"] # 0xec0f (en: 'under bracket right', DeepL translation) + - "": [T: "bal oldali zárójel felett"] # 0xec10 (en: 'over bracket left', DeepL translation) + - "": [T: "jobb oldali zárójel felett"] # 0xec11 (en: 'over bracket right', DeepL translation) + - "": [T: "bal zárójel 1"] # 0xec12 (en: 'left parens 1', DeepL translation) + - "": [T: "bal zárójel 2"] # 0xec13 (en: 'left parens 2', DeepL translation) + - "": [T: "bal zárójel 3"] # 0xec14 (en: 'left parens 3', DeepL translation) + - "": [T: "bal zárójel 4"] # 0xec15 (en: 'left parens 4', DeepL translation) + - "": [T: "jobb zárójel 1"] # 0xec16 (en: 'right parens 1', DeepL translation) + - "": [T: "jobb zárójel 2"] # 0xec17 (en: 'right parens 2', DeepL translation) + - "": [T: "jobb zárójel 3"] # 0xec18 (en: 'right parens 3', DeepL translation) + - "": [T: "jobb zárójel 4"] # 0xec19 (en: 'right parens 4', DeepL translation) + - "": [T: "gyök 1"] # 0xec1a (en: 'radical 1', DeepL translation) + - "": [T: "gyök 2"] # 0xec1b (en: 'radical 2', DeepL translation) + - "": [T: "gyök 3"] # 0xec1c (en: 'radical 3', DeepL translation) + - "": [T: "gyök 4"] # 0xec1d (en: 'radical 4', DeepL translation) + - "": [T: "gyök 5"] # 0xec1e (en: 'radical 5', DeepL translation) + - "": [T: "alsó radikális"] # 0xec1f (en: 'radical bottom', DeepL translation) + - "": [T: "radikális függőleges hosszabbító"] # 0xec20 (en: 'radical vertical extender', DeepL translation) + - "": [T: "felső radikális"] # 0xec21 (en: 'radical top', DeepL translation) + - "": [T: "bal fehér zárójel a tetején"] # 0xec22 (en: 'left white bracket top', DeepL translation) + - "": [T: "bal oldali fehér zárójel hosszabbító"] # 0xec23 (en: 'left white bracket extender', DeepL translation) + - "": [T: "bal fehér zárójel az alján"] # 0xec24 (en: 'left white bracket bottom', DeepL translation) + - "": [T: "jobb fehér zárójel a tetején"] # 0xec25 (en: 'right white bracket top', DeepL translation) + - "": [T: "jobb oldali fehér zárójel hosszabbító"] # 0xec26 (en: 'right white bracket extender', DeepL translation) + - "": [T: "jobb fehér zárójel az alján"] # 0xec27 (en: 'right white bracket bottom', DeepL translation) + - "": [T: "bal fehér kapcsos zárójel"] # 0xec30 (en: 'left white curly bracket', DeepL translation) + - "": [T: "jobb fehér kapcsos zárójel"] # 0xec31 (en: 'right white curly bracket', DeepL translation) + - "": [T: "hosszú osztójel"] # 0xec32 (en: 'long division sign', DeepL translation) + - "": [T: "hosszú osztójel hosszabbító"] # 0xec33 (en: 'long division sign extender', DeepL translation) + - "": [T: "rövid osztás"] # 0xec34 (en: 'short division', DeepL translation) + - "": [T: "dupla délnyugatról északkelet felé tartó em kötés"] # 0xec40 (en: 'double southwest to northeast em bond', DeepL translation) + - "": [T: "dupla északnyugatról délkelet felé tartó em kötés"] # 0xec41 (en: 'double northwest to southeast em bond', DeepL translation) + - "": [T: "egyetlen vízszintes em kötés"] # 0xec42 (en: 'single horizontal em bond', DeepL translation) + - "": [T: "dupla vízszintes em kötés"] # 0xec43 (en: 'double horizontal em bond', DeepL translation) + - "": [T: "hármas vízszintes em kötés"] # 0xec44 (en: 'triple horizontal em bond', DeepL translation) + - "": [T: "egyetlen függőleges em kötés"] # 0xec45 (en: 'single vertical em bond', DeepL translation) + - "": [T: "dupla függőleges em kötés"] # 0xec46 (en: 'double vertical em bond', DeepL translation) + - "": [T: "hármas függőleges em kötés"] # 0xec47 (en: 'triple vertical em bond', DeepL translation) + - "": [T: "kevesebb, mint em kötés"] # 0xec48 (en: 'less than em bond', DeepL translation) + - "": [T: "nagyobb, mint em kötés"] # 0xec49 (en: 'greater than em bond', DeepL translation) + - "": [T: "egyetlen vízszintes en kötés"] # 0xec4a (en: 'single horizontal en bond', DeepL translation) + - "": [T: "dupla vízszintes en kötés"] # 0xec4b (en: 'double horizontal en bond', DeepL translation) + - "": [T: "hármas vízszintes en kötés"] # 0xec4c (en: 'triple horizontal en bond', DeepL translation) + - "": [T: "bal felső téglalap"] # 0xec80 (en: 'top left rectangle', DeepL translation) + - "": [T: "bal alsó téglalap"] # 0xec81 (en: 'bottom left rectangle', DeepL translation) + - "": [T: "jobb felső téglalap"] # 0xec90 (en: 'top right rectangle', DeepL translation) + - "": [T: "jobb alsó téglalap"] # 0xec91 (en: 'bottom right rectangle', DeepL translation) + - "": [T: "szintetikus osztás sarokkal"] # 0xec92 (en: 'synthetic division corner', DeepL translation) + - "": [T: "szintetikus osztás vízszintes hosszabbítókiterjesztő"] # 0xec93 (en: 'synthetic division horizontal extender', DeepL translation) + - "": [T: "szintetikus osztás függőleges hosszabbító"] # 0xec94 (en: 'synthetic division vertical extender', DeepL translation) + - "": [T: "bal oldali mennyezeti padlóhosszabbító"] # 0xec95 (en: 'left ceiling floor extender', DeepL translation) + - "": [T: "jobb oldali mennyezeti padlóhosszabbító"] # 0xec96 (en: 'right ceiling floor extender', DeepL translation) + - "": [T: "zárójel feletti hosszabbító"] # 0xec97 (en: 'over bracket extender', DeepL translation) + - "": [T: "függőleges sávhosszabbító"] # 0xec98 (en: 'vertical bar extender', DeepL translation) + - "": [T: "bal dupla függőleges sávhosszabbító"] # 0xec99 (en: 'left double vertical bar extender', DeepL translation) + - "": [T: "vízszintes sávhosszabbító"] # 0xec9a (en: 'horizontal bar extender', DeepL translation) + - "": [T: "zárójel alatti hosszabbító"] # 0xec9c (en: 'under bracket extender', DeepL translation) + - "": [T: "lefelé mutató jobb zárójel"] # 0xec9d (en: 'down pointing paren right', DeepL translation) + - "": [T: "lefelé mutató zárójel hosszabbító"] # 0xec9e (en: 'down pointing paren extender', DeepL translation) + - "": [T: "lefelé mutató bal zárójel"] # 0xec9f (en: 'down pointing paren left', DeepL translation) + - "": [T: "felfelé mutató szalaghosszabbító"] # 0xeca0 (en: 'up pointing brace extender', DeepL translation) + - "": [T: "felfelé mutató bal zárójel"] # 0xeca1 (en: 'up pointing paren left', DeepL translation) + - "": [T: "felfelé mutató zárójel hosszabbító"] # 0xeca2 (en: 'up pointing paren extender', DeepL translation) + - "": [T: "felfelé mutató jobb zárójel"] # 0xeca3 (en: 'up pointing paren right', DeepL translation) + - "": [T: "lefelé mutató szalaghosszabbító"] # 0xeca4 (en: 'down pointing brace extender', DeepL translation) + - "": [T: "planck-állandó a két pi-sáv felett"] # 0xed00 (en: 'planck constant over two pi bar', DeepL translation) + - "": [T: "tükör g"] # 0xed01 (en: 'mirror g', DeepL translation) + - "": [T: "pont nélküli j"] # 0xed02 (en: 'dotless j', DeepL translation) + - "": [T: "digamma"] # 0xed03 (DeepL translation) + - "ϝ": [T: "digamma"] # 0x3dd (DeepL translation) + - "": [T: "d"] # 0xed10 (en: 'd', DeepL translation) + - "": [T: "e"] # 0xed11 (en: 'e', DeepL translation) + - "": [T: "i"] # 0xed12 (en: 'i', DeepL translation) + - "": [T: "j"] # 0xed13 (en: 'j', DeepL translation) + - "ⅅ": + - SPELL: "translate('.', 'ⅅ', 'DD')" # 0xed16, 0x2145 + +# The private use chars are from MathType + - "": [T: "az óramutató járásával ellentétes irányú kontúr integrál hurok"] # 0xee00 (en: 'anticlockwise contour integral loop', DeepL translation) + - "": [T: "az óramutató járásával megegyező irányú kontúr integrál hurok"] # 0xee01 (en: 'clockwise contour integral loop', DeepL translation) + - "": [T: ""] # 0xee04 + - "": [T: ""] # 0xee05 + - "": [T: ""] # 0xee06 + - "": [T: ""] # 0xee07 + - "": [T: ""] # 0xee08 + - "": [T: ""] # 0xee09 + - "": [T: ""] # 0xee0a + - "": [T: ""] # 0xee0b + - "": [T: ""] # 0xee0c + - "": [T: "közös állapotú díszítés"] # 0xee0d (en: 'joint status embellishment', DeepL translation) + - "": [T: "bal oldali közös állapotú díszítés"] # 0xee0e (en: 'joint status embellishment left', DeepL translation) + - "": [T: "jobb oldali közös állapotú díszítés"] # 0xee0f (en: 'joint status embellishment right', DeepL translation) + - "": [T: "közös állapotú díszítő bővítmény"] # 0xee10 (en: 'joint status embellishment extender', DeepL translation) + - "": [T: "hurok integrál"] # 0xee11 (en: 'integral loop', DeepL translation) + - "": [T: "dupla hurok integrál"] # 0xee12 (en: 'integral loop double', DeepL translation) + - "": [T: "hármas hurok integrál"] # 0xee13 (en: 'integral loop triple', DeepL translation) + - "": [T: "bővülő dupla hurok integrál"] # 0xee15 (en: 'expanding integral loop double', DeepL translation) + - "": [T: "bővülő hármas hurok integrál"] # 0xee16 (en: 'expanding integral loop triple', DeepL translation) + - "": [T: "aszimptotikusan egyenlő az ékezettel"] # 0xee17 (en: 'asymptotically equal to accent', DeepL translation) + - "": [T: "egyenlőségjel ékezet"] # 0xee18 (en: 'equal sign accent', DeepL translation) + - "": [T: "négyszeres prím"] # 0xee19 (en: 'quadruple prime', DeepL translation) + - "": [T: "sávos ékezet, balra nyitott körrel"] # 0xee1a (en: 'bar accent with open circle left', DeepL translation) + - "": [T: "sávos ékezet, balra zárt körrel"] # 0xee1b (en: 'bar accent with closed circle left', DeepL translation) + - "": [T: "sávos ékezet, jobbra nyitott körrel"] # 0xee1c (en: 'bar accent with open circle right', DeepL translation) + - "": [T: "sávos ékezet, felette ponttal"] # 0xee1d (en: 'bar accent with over dot', DeepL translation) + - "": [T: "sávos ékezet, alatta ponttal"] # 0xee1e (en: 'bar accent with under dot', DeepL translation) + - "": [T: "sávos ékezet, dupla ponttal"] # 0xee1f (en: 'bar accent with double over dot', DeepL translation) + - "": [T: "sávos ékezet, alatta dupla ponttal"] # 0xee20 (en: 'bar accent with double under dot', DeepL translation) + - "": [T: "sávos ékezet vésővel"] # 0xee21 (en: 'bar accent with caret', DeepL translation) + - "": [T: "vastag sáv alatti ékezet"] # 0xee22 (en: 'thick under bar accent', DeepL translation) + - "": [T: "sávos ékezet, jobbra zárt körrel"] # 0xee23 (en: 'bar accent with closed circle right', DeepL translation) + - "": [T: "nagy pont felett"] # 0xee24 (en: 'large dot above', DeepL translation) + - "": [T: "igazítójel"] # 0xef00 (en: 'alignment mark', DeepL translation) + - "": [T: ""] # 0xef01 + - "​": [T: "​"] # 0x200b + - "": [T: ""] # 0xef02 + - " ": [T: " "] # 0x2009 + - "": [T: ""] # 0xef03 + - " ": [T: " "] # 0x205f + - "": [T: ""] # 0xef04 + - "": [T: ""] # 0xef05 + - "": [T: ""] # 0xef06 + - "": [T: ""] # 0xef07 + - "": [T: ""] # 0xef08 + - "": [T: ""] # 0xef09 + - "": [T: ""] # 0xef0a + - " ": [T: " "] # 0x200a + - "": [T: ""] # 0xef22 + - "": [T: ""] # 0xef23 + - "": [T: ""] # 0xef24 + - "": [T: ""] # 0xef29 + - "": [T: "hiányzó kifejezés"] # 0xef41 (en: 'missing term', DeepL translation) + - "": [T: "bal oldalon az óramutató járásával megegyező irányú kontúr integrál nyíl"] # 0xef80 (en: 'clockwise contour integral arrow on left', DeepL translation) + - "": [T: "integrál négyzettel"] # 0xef81 (en: 'integral with square', DeepL translation) + - "": [T: "perjellel átlósan átlós integrál"] # 0xef82 (en: 'integral with slash', DeepL translation) + - "": [T: "fordított integrál"] # 0xef83 (en: 'reversed integral', DeepL translation) + - "": [T: "dupla nulla a dupla nulla felett"] # 0xef90 (en: 'double zero over double zero', DeepL translation) + - "": [T: "nulla perjellel"] # 0xef91 (en: 'zero with slash', DeepL translation) + + # fraktur chars in math alphabetic block and also MathType private use area + # Some of these are reserved because they were used in Plane 0 -- that shouldn't be an issue other than causing the other chars to not display + - "𝔄-𝔜": # 0x1d504 - 0x1d51d ('z' version is reserved) + - T: "fraktur" # (DeepL translation) + - SPELL: "translate('.', '𝔄𝔅𝔆𝔇𝔈𝔉𝔊𝔋𝔌𝔍𝔎𝔏𝔐𝔑𝔒𝔓𝔔𝔕𝔖𝔗𝔘𝔙𝔚𝔛𝔜', 'ABCDEFGHIJKLMNOPQRSTUVWXY')" + + - "-": # 0xf000 - 0xf018 + - T: "fraktur" # (DeepL translation) + - SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXY')" + + - "𝔞-𝔷": # 0x1d51e - 0x1d537 + - T: "fraktur" # (DeepL translation) + - SPELL: "translate('.', '𝔞𝔟𝔠𝔡𝔢𝔣𝔤𝔥𝔦𝔧𝔨𝔩𝔪𝔫𝔬𝔭𝔮𝔯𝔰𝔱𝔲𝔳𝔴𝔵𝔶𝔷', 'abcdefghijklmnopqrstuvwxyz')" + - "-": # 0xf01a - 0xf033 + - T: "fraktur" # (DeepL translation) + - SPELL: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" + + - "𝕬-𝖅": # 0x1D56C - 0x1D585 + - T: "fraktur" # (DeepL translation) + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝕬𝕭𝕮𝕯𝕰𝕱𝕲𝕳𝕴𝕵𝕶𝕷𝕸𝕹𝕺𝕻𝕼𝕽𝕾𝕿𝖀𝖁𝖂𝖃𝖄𝖅', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "-": # 0xf040 - 0xf059 + - T: "fraktur" # (DeepL translation) + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "𝖆-𝖟": # 0x1d586 - 0x1d59f + - T: "fraktur" # (DeepL translation) + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝖆𝖇𝖈𝖉𝖊𝖋𝖌𝖍𝖎𝖏𝖐𝖑𝖒𝖓𝖔𝖕𝖖𝖗𝖘𝖙𝖚𝖛𝖜𝖝𝖞𝖟', 'abcdefghijklmnopqrstuvwxyz')" + - "-": # 0xf05a - 0xf073 + - T: "fraktur" # (DeepL translation) + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" + + # double struck (blackboard bold) chars in math alphabetic block and also MathType private use area + # Some of these are reserved because they were used in Plane 0 -- that shouldn't be an issue other than causing the other chars to not display + - "𝔸-𝕐": # 0x1d504 - 0x1d51d ('z' version is reserved) + - T: "dupla leütésű" # (en: 'double struck', DeepL translation) + - SPELL: "translate('.', '𝔸𝔹𝔺𝔻𝔼𝔽𝔾𝔿𝕀𝕁𝕂𝕃𝕄𝕅𝕆𝕇𝕈𝕉𝕊𝕋𝕌𝕍𝕎𝕏𝕐', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "-": # 0xf080 - 0xf098 + - T: "dupla leütésű" # (en: 'double struck', DeepL translation) + - SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "𝕒-𝕫": # 0x1d552 - 0x1d56b + - T: "dupla leütésű" # (en: 'double struck', DeepL translation) + - SPELL: "translate('.', '𝕒𝕓𝕔𝕕𝕖𝕗𝕘𝕙𝕚𝕛𝕜𝕝𝕞𝕟𝕠𝕡𝕢𝕣𝕤𝕥𝕦𝕧𝕨𝕩𝕪𝕫', 'abcdefghijklmnopqrstuvwxyz')" + - "-": # 0xf09a - 0xf0b3 + - T: "dupla leütésű" # (en: 'double struck', DeepL translation) + - SPELL: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" + - "𝟘-𝟡": # 0x1d7d8 - 0x1d7e1 + - T: "dupla leütésű" # (en: 'double struck', DeepL translation) + - SPELL: "translate('.', '𝟘𝟙𝟚𝟛𝟜𝟝𝟞𝟟𝟠𝟡', '0123456789')" + - "-": # 0xf0c0 - 0xf0c9 + - T: "dupla leütésű" # (en: 'double struck', DeepL translation) + - SPELL: "translate('.', '', '0123456789')" + + - "": [T: "dupla leütésű nahblah"] # 0xf0ca (en: 'double struck nahblah', DeepL translation) + - "": [T: "dupla leütésű euler-állandó"] # 0xf0cb (en: 'double struck euler constant', DeepL translation) + + # script chars in math alphabetic block and also MathType private use area + - "𝒜-𝒵": # 0x1d49c - 0x1d4b5 + - T: "alsó index" # (DeepL translation) + - SPELL: "translate('.', '𝒜𝒝𝒞𝒟𝒠𝒡𝒢𝒣𝒤𝒥𝒦𝒧𝒨𝒩𝒪𝒫𝒬𝒭𝒮𝒯𝒰𝒱𝒲𝒳𝒴𝒵', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "-": # 0xf100 - 0xf119 + - T: "alsó index" # (DeepL translation) + - SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "𝒶-𝓏": # 0x1d4b6 - 0x1d4cf + - T: "alsó index" # (DeepL translation) + - SPELL: "translate('.', '𝒶𝒷𝒸𝒹𝒺𝒻𝒼𝒽𝒾𝒿𝓀𝓁𝓂𝓃𝓄𝓅𝓆𝓇𝓈𝓉𝓊𝓋𝓌𝓍𝓎𝓏', 'abcdefghijklmnopqrstuvwxyz')" + - "-": # 0xf11a - 0xf133 + - T: "alsó index" # (DeepL translation) + - SPELL: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" + + # bold script chars in math alphabetic block and also MathType private use area + - "𝓐-𝓩": # 0x1d4d0 - 0x1d4e9 + - T: "alsó index" # (DeepL translation) + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝓐𝓑𝓒𝓓𝓔𝓕𝓖𝓗𝓘𝓙𝓚𝓛𝓜𝓝𝓞𝓟𝓠𝓡𝓢𝓣𝓤𝓥𝓦𝓧𝓨𝓩', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "-": # 0xf140 - 0xf159 + - T: "alsó index" # (DeepL translation) + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "𝓪-𝔃": # 0x1d4ea - 0x1d503 + - T: "alsó index" # (DeepL translation) + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝓪𝓫𝓬𝓭𝓮𝓯𝓰𝓱𝓲𝓳𝓴𝓵𝓶𝓷𝓸𝓹𝓺𝓻𝓼𝓽𝓾𝓿𝔀𝔁𝔂𝔃', 'abcdefghijklmnopqrstuvwxyz')" + - "-": # 0xf15a - 0xf173 + - T: "alsó index" # (DeepL translation) + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" + + - "-": # 0xf180 - 0xf199 + - SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "": # 0xf19a + - test: + if: "$CapitalLetters_Beep" + then: + - audio: + value: "beep.mp4" + replace: [] + - test: + if: "$CapitalLetters_UseWord" + then_test: + if: "$SpeechOverrides_CapitalLetters = ''" + then_test: + if: "$Impairment = 'Blindness'" + then: [T: "nagy"] # (en: 'cap', DeepL translation) + else: [x: "$SpeechOverrides_CapitalLetters"] + - pitch: + value: "$CapitalLetters_Pitch" + replace: [T: "ligatúra ae"] # (en: 'ligature ae', DeepL translation) + - "": # 0xf19b + - test: + if: "$CapitalLetters_Beep" + then: + - audio: + value: "beep.mp4" + replace: [] + - test: + if: "$CapitalLetters_UseWord" + then_test: + if: "$SpeechOverrides_CapitalLetters = ''" + then_test: + if: "$Impairment = 'Blindness'" + then: [T: "nagy"] # (en: 'cap', DeepL translation) + else: [x: "$SpeechOverrides_CapitalLetters"] + - pitch: + value: "$CapitalLetters_Pitch" + replace: [T: "éles s"] # (en: 'sharp s', DeepL translation) + - "": # 0xf19c + - test: + if: "$CapitalLetters_Beep" + then: + - audio: + value: "beep.mp4" + replace: [] + - test: + if: "$CapitalLetters_UseWord" + then_test: + if: "$SpeechOverrides_CapitalLetters = ''" + then_test: + if: "$Impairment = 'Blindness'" + then: [T: "nagy"] # (en: 'cap', DeepL translation) + else: [x: "$SpeechOverrides_CapitalLetters"] + - pitch: + value: "$CapitalLetters_Pitch" + replace: [T: "o vonallal"] # (en: 'o with stroke', DeepL translation) + + # MathType only has a few of the cap Greek letters in PUA + - "": # 0xf201 - 0xf209 + - T: "dupla leütésű" # (en: 'double struck', DeepL translation) + - SPELL: "translate('.', '', 'ΔΨΛΠΣΘΓΩΥ')" + + - "-": # 0xf220 - 0xf236 + - T: "dupla leütésű" # (en: 'double struck', DeepL translation) + - SPELL: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" + + - "": [T: "dupla leütésű végső szigma"] # 0xf237 (en: 'double struck final sigma', DeepL translation) + - "": [T: "dupla leütésű rho"] # 0xf250 (en: 'double struck rho', DeepL translation) + - "": [T: "dupla leütésű phi"] # 0xf251 (en: 'double struck phi', DeepL translation) + - "𝐀-𝐙": # 0x1d400 - 0x1d419 + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝐀𝐁𝐂𝐃𝐄𝐅𝐆𝐇𝐈𝐉𝐊𝐋𝐌𝐍𝐎𝐏𝐐𝐑𝐒𝐓𝐔𝐕𝐖𝐗𝐘𝐙', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "-": # 0xf260 - 0xf279 + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "𝐚-𝐳": # 0x1d41a - 0x1d433 + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝐚𝐛𝐜𝐝𝐞𝐟𝐠𝐡𝐢𝐣𝐤𝐥𝐦𝐧𝐨𝐩𝐪𝐫𝐬𝐭𝐮𝐯𝐰𝐱𝐲𝐳', 'abcdefghijklmnopqrstuvwxyz')" + + - "-": # 0xf27a - 0xf293 + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" + + - "𝐴-𝑍": # 0x1d434 - 0x1d44d + - SPELL: "translate('.', '𝐴𝐵𝐶𝐷𝐸𝐹𝐺𝐻𝐼𝐽𝐾𝐿𝑀𝑁𝑂𝑃𝑄𝑅𝑆𝑇𝑈𝑉𝑊𝑋𝑌𝑍', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "-": # 0xf294 - 0xf2ad + - SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "𝑎-𝑧": # 0x1d44e - 0x1d467 + - SPELL: "translate('.', '𝑎𝑏𝑐𝑑𝑒𝑓𝑔𝑕𝑖𝑗𝑘𝑙𝑚𝑛𝑜𝑝𝑞𝑟𝑠𝑡𝑢𝑣𝑤𝑥𝑦𝑧', 'abcdefghijklmnopqrstuvwxyz')" + + - "-": # 0xf2ae - 0xf2c7 + - SPELL: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" + + - "𝑨-𝒁": # 0x1d468 - 0x1d481 + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝑨𝑩𝑪𝑫𝑬𝑭𝑮𝑯𝑰𝑱𝑲𝑳𝑴𝑵𝑶𝑷𝑸𝑹𝑺𝑻𝑼𝑽𝑾𝑿𝒀𝒁', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "-": # 0xf2c8 - 0xf2e1 + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "𝒂-𝒛": # 0x1d482 - 0x1d49b + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝒂𝒃𝒄𝒅𝒆𝒇𝒈𝒉𝒊𝒋𝒌𝒍𝒎𝒏𝒐𝒑𝒒𝒓𝒔𝒕𝒖𝒗𝒘𝒙𝒚𝒛', 'abcdefghijklmnopqrstuvwxyz')" + + - "-": # 0xf2e2 - 0xf2fb + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" + + - "𝖠-𝖹": # 0x1d5a0 - 0x1d5b9 + - SPELL: "translate('.', '𝖠𝖡𝖢𝖣𝖤𝖥𝖦𝖧𝖨𝖩𝖪𝖫𝖬𝖭𝖮𝖯𝖰𝖱𝖲𝖳𝖴𝖵𝖶𝖷𝖸𝖹', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "-": # 0xf300 - 0xf319 + - SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "𝖺-𝗓": # 0x1d5ba - 0x1d5d3 + - SPELL: "translate('.', '𝖺𝖻𝖼𝖽𝖾𝖿𝗀𝗁𝗂𝗃𝗄𝗅𝗆𝗇𝗈𝗉𝗊𝗋𝗌𝗍𝗎𝗏𝗐𝗑𝗒𝗓', 'abcdefghijklmnopqrstuvwxyz')" + + - "-": # 0xf31a - 0xf333 + - SPELL: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" + + - "𝗔-𝗭": # 0x1d5d4 - 0x1d5ed + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝗔𝗕𝗖𝗗𝗘𝗙𝗚𝗛𝗜𝗝𝗞𝗟𝗠𝗡𝗢𝗣𝗤𝗥𝗦𝗧𝗨𝗩𝗪𝗫𝗬𝗭', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "-": # 0xf334 - 0xf34d + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "𝗮-𝘇": # 0x1d5ee - 0x1d607 + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝗮𝗯𝗰𝗱𝗲𝗳𝗴𝗵𝗶𝗷𝗸𝗹𝗺𝗻𝗼𝗽𝗾𝗿𝘀𝘁𝘂𝘃𝘄𝘅𝘆𝘇', 'abcdefghijklmnopqrstuvwxyz')" + + - "-": # 0xf34e - 0xf367 + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" + - "𝘈-𝘡": # 0x1d608 - 0x1d621 + # - t: "italic" + - SPELL: "translate('.', '𝘈𝘉𝘊𝘋𝘌𝘍𝘎𝘏𝘐𝘑𝘒𝘓𝘔𝘕𝘖𝘗𝘘𝘙𝘚𝘛𝘜𝘝𝘞𝘟𝘠𝘡', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + - "-": # 0xf368 - 0xf381 + # - t: "italic" + - SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "𝘢-𝘻": # 0x1d622 - 0x1d63b + # - t: "italic" + - SPELL: "translate('.', '𝘢𝘣𝘤𝘥𝘦𝘧𝘨𝘩𝘪𝘫𝘬𝘭𝘮𝘯𝘰𝘱𝘲𝘳𝘴𝘵𝘶𝘷𝘸𝘹𝘺𝘻', 'abcdefghijklmnopqrstuvwxyz')" + + - "-": # 0xf382 - 0xf39b + # - t: "italic" + - SPELL: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" + + - "𝘼-𝙕": # 0x1d63c - 0x1d655 + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝘼𝘽𝘾𝘿𝙀𝙁𝙂𝙃𝙄𝙅𝙆𝙇𝙈𝙉𝙊𝙋𝙌𝙍𝙎𝙏𝙐𝙑𝙒𝙓𝙔𝙕', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "-": # 0xf39c - 0xf3b5 + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "𝙖-𝙯": # 0x1d656 - 0x1d66f + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝙖𝙗𝙘𝙙𝙚𝙛𝙜𝙝𝙞𝙟𝙠𝙡𝙢𝙣𝙤𝙥𝙦𝙧𝙨𝙩𝙪𝙫𝙬𝙭𝙮𝙯', 'abcdefghijklmnopqrstuvwxyz')" + + - "-": # 0xf3b6 - 0xf3cf + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" + + - "𝙰-𝚉": # 0x1d670 - 0x1d689 + - SPELL: "translate('.', '𝙰𝙱𝙲𝙳𝙴𝙵𝙶𝙷𝙸𝙹𝙺𝙻𝙼𝙽𝙾𝙿𝚀𝚁𝚂𝚃𝚄𝚅𝚆𝚇𝚈𝚉', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "-": # 0xf3d0 - 0xf3e9 + - SPELL: "translate('.', '', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')" + + - "𝚊-𝚣": # 0x1d68a - 0x1d6a3 + - SPELL: "translate('.', '𝚊𝚋𝚌𝚍𝚎𝚏𝚐𝚑𝚒𝚓𝚔𝚕𝚖𝚗𝚘𝚙𝚚𝚛𝚜𝚝𝚞𝚟𝚠𝚡𝚢𝚣', 'abcdefghijklmnopqrstuvwxyz')" + + - "-": # 0xf3ea - 0xf403 + - SPELL: "translate('.', '', 'abcdefghijklmnopqrstuvwxyz')" + + - "": [T: "pont nélküli i"] # 0xf404 (en: 'dotless i', DeepL translation) + - "𝚤": [T: "pont nélküli i"] # 0x1d6a4 (en: 'dotless i', DeepL translation) + - "𝚥": [T: "pont nélküli j"] # 0x1d6a5 (en: 'dotless j', DeepL translation) + + - "𝚨-𝛀": # 0x1d6a8 - 0x1d6c0 + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝚨𝚩𝚪𝚫𝚬𝚭𝚮𝚯𝚰𝚱𝚲𝚳𝚴𝚵𝚶𝚷𝚸𝚹𝚺𝚻𝚼𝚽𝚾𝚿𝛀', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" + + - "-": # 0xf408 - 0xf420 + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" + + - "𝛂-𝛚": # 0x1d6c2 - 0x1d6da + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝛂𝛃𝛄𝛅𝛆𝛇𝛈𝛉𝛊𝛋𝛌𝛍𝛎𝛏𝛐𝛑𝛒𝛓𝛔𝛕𝛖𝛗𝛘𝛙𝛚', 'αβγδεζηθικλμνξοπρςστυφχψω')" + + - "-": # 0xf422 - 0xf43a + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')" + + - "": [T: "félkövér nahblah"] # 0xf421 (en: 'bold nahblah', DeepL translation) + - "𝛁": [T: "félkövér nahblah"] # 0x1d6c1 (en: 'bold nahblah', DeepL translation) + + - "𝛛𝛜𝛝𝛞𝛟𝛠𝛡": # 0x1D6DB - 0x1D6E1 + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝛛𝛜𝛝𝛞𝛟𝛠𝛡', '∂εθκφρπ')" + + - "": # 0xF43C - 0xF441 + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', '∂εθκφρπ')" + + - "𝛢-𝛺": # 0x1d6e2 - 0x1d6fa + # - t: "italic" + - SPELL: "translate('.', '𝛢𝛣𝛤𝛥𝛦𝛧𝛨𝛩𝛪𝛫𝛬𝛭𝛮𝛯𝛰𝛱𝛲𝛳𝛴𝛵𝛶𝛷𝛸𝛹𝛺', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" + + - "-": # 0xf442 - 0xf45a + # - t: "italic" + - SPELL: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" + + - "𝛼-𝜔": # 0x1d6fc - 0x1d714 + # - t: "italic" + - SPELL: "translate('.', '𝛼𝛽𝛾𝛿𝜀𝜁𝜂𝜃𝜄𝜅𝜆𝜇𝜈𝜉𝜊𝜋𝜌𝜍𝜎𝜏𝜐𝜑𝜒𝜓𝜔', 'αβγδεζηθικλμνξοπρςστυφχψω')" + + - "-": # 0xf45c - 0xf474 + # - t: "italic" + - SPELL: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')" + + - "": [T: "dőlt betűs nahblah"] # 0xf45b (en: 'italic nahblah', DeepL translation) + - "𝛻": [T: "dőlt betűs nahblah"] # 0x1d6fb (en: 'italic nahblah', DeepL translation) + + - "𝜕𝜖𝜗𝜘𝜙𝜚𝜛": # 0x1d715 - 0x1d71b + # - t: "italic" + - SPELL: "translate('.', '𝜕𝜖𝜗𝜘𝜙𝜚𝜛', '∂εθκφρπ')" + + - "": # 0xf475 - 0xf47b + # - t: "italic" + - SPELL: "translate('.', '', '∂εθκφρπ')" + + - "𝜜-𝜴": # 0x1d71c - 0x1d734 + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝜜𝜝𝜞𝜟𝜠𝜡𝜢𝜣𝜤𝜥𝜦𝜧𝜨𝜩𝜪𝜫𝜬𝜭𝜮𝜯𝜰𝜱𝜲𝜳𝜴', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" + + - "-": # 0xf47c - 0xf494 + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" + + - "𝜶-𝝎": # 0x1d736 - 0x1d74e + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝜶𝜷𝜸𝜹𝜺𝜻𝜼𝜽𝜾𝜿𝝀𝝁𝝂𝝃𝝄𝝅𝝆𝝇𝝈𝝉𝝊𝝋𝝌𝝍𝝎', 'αβγδεζηθικλμνξοπρςστυφχψω')" + + - "-": # 0xf496 - 0xf4ae + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')" + + - "𝝏𝝐𝝑𝝒𝝓𝝔𝝕": # 0x1d74f - 0x1d755 + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝝏𝝐𝝑𝝒𝝓𝝔𝝕', '∂εθκφρπ')" + + - "": # 0xf422 - 0xf43a + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', '∂εθκφρπ')" + + - "𝜵": [T: "félkövér dőlt betűs nahblah"] # 0x1d735 (en: 'bold italic nahblah', DeepL translation) + - "": [T: "félkövér dőlt betűs nahblah"] # 0xf495 (en: 'bold italic nahblah', DeepL translation) + + - "𝝖-𝝮": # 0x1d756 - 0x1d76e + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝝖𝝗𝝘𝝙𝝚𝝛𝝜𝝝𝝞𝝟𝝠𝝡𝝢𝝣𝝤𝝥𝝦𝝧𝝨𝝩𝝪𝝫𝝬𝝭𝝮', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" + - "-": # 0xf4b6 - 0xf4ce + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" + + - "𝝰-𝞈": # 0x1d770 - 0x1d788 + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝝰𝝱𝝲𝝳𝝴𝝵𝝶𝝷𝝸𝝹𝝺𝝻𝝼𝝽𝝾𝝿𝞀𝞁𝞂𝞃𝞄𝞅𝞆𝞇𝞈', 'αβγδεζηθικλμνξοπρςστυφχψω')" + + - "-": # 0xf4d0 - 0xf4e8 + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')" + + - "𝞉𝞊𝞋𝞌𝞍𝞎𝞏": # 0x1d789 - 0x1d78f + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '𝞉𝞊𝞋𝞌𝞍𝞎𝞏', '∂εθκφρπ')" + + - "": # 0xf4e9 - 0xf4ef + - test: + if: "not($IgnoreBold)" + then: [T: "félkövér"] # (en: 'bold', DeepL translation) + - SPELL: "translate('.', '', '∂εθκφρπ')" + + - "": [T: "félkövér nahblah"] # 0xf4cf (en: 'bold nahblah', DeepL translation) + - "𝝯": [T: "félkövér nahblah"] # 0x1d76f (en: 'bold nahblah', DeepL translation) + + - "𝞐-𝞨": # 0x1d790 - 0x1d7a8 + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [t: "félkövér"] # (en: 'bold', DeepL translation) + - spell: "translate('.', '𝞐𝞑𝞒𝞓𝞔𝞕𝞖𝞗𝞘𝞙𝞚𝞛𝞜𝞝𝞞𝞟𝞠𝞡𝞢𝞣𝞤𝞥𝞦𝞧𝞨', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" + + - "-": # 0xf4f0 - 0xf508 + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [t: "félkövér"] # (en: 'bold', DeepL translation) + - spell: "translate('.', '', 'ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡ΢ΣΤΥΦΧΨΩ')" + + - "𝞪-𝟂": # 0x1d7aa - 0x1d7c2 + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [t: "félkövér"] # (en: 'bold', DeepL translation) + - spell: "translate('.', '𝞪𝞫𝞬𝞭𝞮𝞯𝞰𝞱𝞲𝞳𝞴𝞵𝞶𝞷𝞸𝞹𝞺𝞻𝞼𝞽𝞾𝞿𝟀𝟁𝟂', 'αβγδεζηθικλμνξοπρςστυφχψω')" + + - "-": # 0xf50a - 0xf522 + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [t: "félkövér"] # (en: 'bold', DeepL translation) + - spell: "translate('.', '', 'αβγδεζηθικλμνξοπρςστυφχψω')" + + - "𝟃𝟄𝟅𝟆𝟇𝟈𝟉": # 0x1d7c3 - 0x1d7c9 + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [t: "félkövér"] # (en: 'bold', DeepL translation) + - spell: "translate('.', '𝟃𝟄𝟅𝟆𝟇𝟈𝟉', '∂εθκφρπ')" + + - "": # 0xf523 - 0xf529 + # - t: "bold italic" + - test: + if: "not($IgnoreBold)" + then: [t: "félkövér"] # (en: 'bold', DeepL translation) + - spell: "translate('.', '', '∂εθκφρπ')" + + - "": [t: "merész nahblah"] # 0xf509 (en: 'bold nahblah', DeepL translation) + - "𝞩": [t: "merész nahblah"] # 0x1d7a9 (en: 'bold nahblah', DeepL translation) + + - "-": # 0xf52e - 0xf537 (old MathType) + - test: + if: "not($IgnoreBold)" + then: [t: "félkövér"] # (en: 'bold', DeepL translation) + - spell: "translate('.', '', '0123456789')" + + - "𝟎-𝟗": # 0x1d7ce - 0x1d7d7 + - test: + if: "not($IgnoreBold)" + then: [t: "félkövér"] # (en: 'bold', DeepL translation) + - spell: "translate('.', '𝟎𝟏𝟐𝟑𝟒𝟓𝟔𝟕𝟖𝟗', '0123456789')" + + - "𝟬-𝟵": # 0x1D7EC - 0x1D7F5 + - test: + if: "not($IgnoreBold)" + then: [t: "félkövér"] # (en: 'bold', DeepL translation) + - spell: "translate('.', '𝟬𝟭𝟮𝟯𝟰𝟱𝟲𝟳𝟴𝟵', '0123456789')" + + - "-": # 0xf556 - 0xf55f (old MathType) + - spell: "translate('.', '', '0123456789')" + + - "𝟢-𝟫": # 0x1d7e2 - 0x1d7eb + - spell: "translate('.', '𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿', '0123456789')" + + - "𝟶-𝟿": # 0x1d7f6 - 0x1d7ff + - spell: "translate('.', '𝟶𝟷𝟸𝟹𝟺𝟻𝟼𝟽𝟾𝟿', '0123456789')" + + + - "": [t: "ismeretlen karakter"] # 0xf700 (en: 'unknown character', DeepL translation) + - "": [t: "jobb alsó és bal alsó háromszög"] # 0xf726 (en: 'lower right and lower left triangles', DeepL translation) + - "": [t: "vízszintes ellipszis kiterjesztő"] # 0xf72d (en: 'horizontal ellipsis extender', DeepL translation) + - "": [t: "középvonal vízszintes ellipszis meghosszabbító"] # 0xf72e (en: 'midline horizontal ellipsis extender', DeepL translation) + - "": [t: "radikális hosszabbító"] # 0xf8e5 (en: 'radical extender', DeepL translation) + - "": [t: "függőleges nyíl meghosszabbítása"] # 0xf8e6 (en: 'vertical arrow extender', DeepL translation) + - "": [t: "vízszintes nyíl meghosszabbító"] # 0xf8e7 (en: 'horizontal arrow extender', DeepL translation) + - "": [t: "bejegyzett jel sans serif"] # 0xf8e8 (en: 'registered sign sans serif', DeepL translation) + - "": [t: "copyright jel sans serif"] # 0xf8e9 (en: 'copyright sign sans serif', DeepL translation) + - "": [t: "védjegy jele sans serif"] # 0xf8ea (en: 'trade mark sign sans serif', DeepL translation) + - "": [t: "bal zárójel felső"] # 0xf8eb (en: 'left paren top', DeepL translation) + - "": [t: "bal zárójel hosszabbító"] # 0xf8ec (en: 'left paren extender', DeepL translation) + - "": [t: "bal zárójel alul"] # 0xf8ed (en: 'left paren bottom', DeepL translation) + - "": [t: "bal oldali zárójel tetején"] # 0xf8ee (en: 'left bracket top', DeepL translation) + - "": [t: "bal zárójel hosszabbító"] # 0xf8ef (en: 'left bracket extender', DeepL translation) + - "": [t: "bal konzol alul"] # 0xf8f0 (en: 'left bracket bottom', DeepL translation) + - "": [t: "bal oldali merevítő felső"] # 0xf8f1 (en: 'left brace top', DeepL translation) + - "": [t: "bal oldali zárójel középen"] # 0xf8f2 (en: 'left brace mid', DeepL translation) + - "": [t: "bal szögletes szögletes szöglet alul"] # 0xf8f3 (en: 'left brace bottom', DeepL translation) + - "": [t: "merevítő hosszabbító"] # 0xf8f4 (en: 'brace extender', DeepL translation) + - "": [t: "integrál kiterjesztő"] # 0xf8f5 (en: 'integral extender', DeepL translation) + - "": [t: "jobb oldali zárójel felül"] # 0xf8f6 (en: 'right paren top', DeepL translation) + - "": [t: "jobb oldali zárójel hosszabbító"] # 0xf8f7 (en: 'right paren extender', DeepL translation) + - "": [t: "jobb alsó zárójel"] # 0xf8f8 (en: 'right paren bottom', DeepL translation) + - "": [t: "jobb zárójel fent"] # 0xf8f9 (en: 'right bracket top', DeepL translation) + - "": [t: "jobb oldali zárójel hosszabbító"] # 0xf8fa (en: 'right bracket extender', DeepL translation) + - "": [t: "jobb oldali zárójel alul"] # 0xf8fb (en: 'right bracket bottom', DeepL translation) + - "": [t: "jobb oldali merevítő felül"] # 0xf8fc (en: 'right brace top', DeepL translation) + - "": [t: "jobb oldali zárójel középen"] # 0xf8fd (en: 'right brace mid', DeepL translation) + - "": [t: "jobb oldali merevítő alul"] # 0xf8fe (en: 'right brace bottom', DeepL translation) + - "": [t: "alma logó"] # 0xf8ff (en: 'apple logo', DeepL translation) + - "ff": [t: "ff"] # 0xfb00 (DeepL translation) + - "fi": [t: "fi"] # 0xfb01 (DeepL translation) + - "fl": [t: "fl"] # 0xfb02 (DeepL translation) + - "ffi": [t: "ffi"] # 0xfb03 (DeepL translation) + - "ffl": [t: "ffl"] # 0xfb04 (DeepL translation) + - "ſt": [t: "ft"] # 0xfb05 (DeepL translation) + - "st": [t: "st"] # 0xfb06 (DeepL translation) + - "﬩": [t: "héber betű alternatív plusz"] # 0xfb29 (en: 'hebrew letter alternative plus', DeepL translation) + - "︠": [t: "ligatúra bal fél díszítés"] # 0xfe20 (en: 'ligature left half embellishment', DeepL translation) + - "︡": [t: "ligatúra jobb fél díszítés"] # 0xfe21 (en: 'ligature right half embellishment', DeepL translation) + - "︢": [t: "dupla tilde balra fél díszítés"] # 0xfe22 (en: 'double tilde left half embellishment', DeepL translation) + - "︣": [t: "dupla tilde jobb oldali fél díszítés"] # 0xfe23 (en: 'double tilde right half embellishment', DeepL translation) + - "︤": [t: "makron bal fél díszítés"] # 0xfe24 (en: 'macron left half embellishment', DeepL translation) + - "︥": [t: "makron jobb oldali fél díszítés"] # 0xfe25 (en: 'macron right half embellishment', DeepL translation) + - "︦": [t: "összekötő makron díszítés"] # 0xfe26 (en: 'conjoining macron embellishment', DeepL translation) + - "︵": [t: "zárójel felett"] # 0xfe35 (en: 'over paren', DeepL translation) + - "︶": [t: "zárójel alatt"] # 0xfe36 (en: 'under paren', DeepL translation) + - "︷": [t: "zárójel fölött"] # 0xfe37 (en: 'over brace', DeepL translation) + - "︸": [t: "zárójel alatt"] # 0xfe38 (en: 'under brace', DeepL translation) + - "︿": [t: "szögletes zárójel fölött"] # 0xfe3f (en: 'over angle bracket', DeepL translation) + - "﹀": [t: "szögletes zárójel alatt"] # 0xfe40 (en: 'under angle bracket', DeepL translation) + - "﹡": [t: "kis csillag"] # 0xfe61 (en: 'small asterisk', DeepL translation) + - "﹢": [t: "kis plusz"] # 0xfe62 (en: 'small plus', DeepL translation) + - "﹣": [t: "kis mínusz"] # 0xfe63 (en: 'small minus', DeepL translation) + - "﹤": [t: "kis kevesebb, mint"] # 0xfe64 (en: 'small less than', DeepL translation) + - "﹥": [t: "kicsi nagyobb, mint"] # 0xfe65 (en: 'small greater than', DeepL translation) + - "﹦": [t: "kis egyenlő"] # 0xfe66 (en: 'small equals', DeepL translation) + - "+": [t: "teljes szélességű plusz jel"] # 0xff0b (en: 'fullwidth plus sign', DeepL translation) + - "<": [t: "kisebb, mint"] # 0xff1c (en: 'less than', DeepL translation) + - "=": [t: "egyenlő"] # 0xff1d (en: 'equals', DeepL translation) + - ">": [t: "nagyobb, mint"] # 0xff1e (en: 'greater than', DeepL translation) + - "\": [t: "visszacsúszó"] # 0xff3c (en: 'backslash', DeepL translation) + - "^": [t: "kalap"] # 0xff3e (en: 'hat', DeepL translation) + - "|": # 0xff5c + # note: for ClearSpeak and SimpleSpeak, "|" inside of sets is handled at the mrow level, same for 'sets' + - with: + variables: [DefaultToGiven: "count(preceding-sibling::*)=1 and count(following-sibling::*)=1 and ../../../*[1][.='P']"] # P(A|B) + replace: + - test: + - if: "$SpeechStyle != 'ClearSpeak'" + then_test: + if: "$DefaultToGiven" + then: [t: "adott"] # (en: 'given', DeepL translation) + else: [t: "függőleges vonal"] # (en: 'vertical line', DeepL translation) + - else_if: "not(preceding-sibling::*) or not(following-sibling::*)" + then: [t: "függőleges vonal"] # (en: 'vertical line', DeepL translation) + - else_if: "$ClearSpeak_VerticalLine = 'SuchThat'" + then: [t: "olyan, hogy"] # (en: 'such that', DeepL translation) + - else_if: "$ClearSpeak_VerticalLine = 'Given' or $DefaultToGiven" + then: [t: "adott"] # (en: 'given', DeepL translation) + - else: [t: "osztja"] # (en: 'divides', DeepL translation) + - "~": [t: "tilde"] # 0xff5e (DeepL translation) + - "¬": [t: "nem"] # 0xffe2 (en: 'not', DeepL translation) + - "←": [t: "bal nyíl"] # 0xffe9 (en: 'left arrow', DeepL translation) + - "↑": [t: "felfelé mutató nyíl"] # 0xffea (en: 'up arrow', DeepL translation) + - "→": [t: "jobbra mutató nyíl"] # 0xffeb (en: 'right arrow', DeepL translation) + - "↓": [t: "lefelé mutató nyíl"] # 0xffec (en: 'down arrow', DeepL translation) + - "": [t: "ismeretlen vagy hiányzó tárgy"] # 0xfffc (en: 'unknown or missing object', DeepL translation) + - "�": [t: "ismeretlen vagy hiányzó karakter"] # 0xfffd (en: 'unknown or missing character', DeepL translation) + + - "🣑": [t: "egyensúlyban van"] # 0x1F8D1 (en: 'is in equilibrium with', DeepL translation) + - "🣒": [t: "egyensúlyban van, jobbra torzítva a"] # 0x1F8D2 (en: 'is in equilibrium biased to the right with', DeepL translation) + - "🣓": [t: "egyensúlyi helyzetben van balra ferdített bal oldallal"] # 0x1F8D3 (en: 'is in equilibrium biased to the left with', DeepL translation) + +# MathJax v4 has adopted these PUA values for some partial chem bonds that aren't in Unicode + - "\uE410": [t: "részleges kötés "] # 0xe410 (en: 'partial bond ', DeepL translation) + - "\uE411": [t: "kettős részleges kötés "] # 0xe411 (en: 'double partial bond ', DeepL translation) + - "\uE412": [t: "hármas részleges kötés "] # 0xe412 (en: 'triple partial bond ', DeepL translation) + +# MathJax v4 also adopted these PUA values for some arrows thar are in Unicode +# Hopefully these will be exported properly in future versions of MathJax + - "\uE428": [spell: "'⟵'"] # 0xe428 defer to def of arrow + - "\uE429": [spell: "'⟶'"] # 0xe429 defer to def of arrow + - "\uE42A": [spell: "'⟷'"] # 0xe42a defer to def of arrow + - "\uE408": [spell: "'🣑'"] # 0xe408 defer to def of arrow + - "\uE409": [spell: "'🣒'"] # 0xe409 defer to def of arrow + - "\uE40A": [spell: "'🣓'"] # 0xe40a defer to def of arrow + - "\uE42B": [spell: "'⇄'"] # 0xe42b defer to def of arrow + - "\uE42C": [spell: "'←'"] # 0xe42c defer to def of arrow + - "\uE42D": [spell: "'→'"] # 0xe42d defer to def of arrow + - "\uE42E": [spell: "'⇄'"] # 0xe42e defer to def of arrow diff --git a/tests/Languages/hu/alphabets.rs b/tests/Languages/hu/alphabets.rs index 7fcdecbd..b6ff080e 100644 --- a/tests/Languages/hu/alphabets.rs +++ b/tests/Languages/hu/alphabets.rs @@ -12,7 +12,7 @@ fn special_alphabet_chars() -> Result<()> { let expr = " ,"; test("hu", "SimpleSpeak", expr, "dupla leütésű nagy h, vessző; dupla leütésű nagy pí")?; let expr = " ,"; - test("hu", "SimpleSpeak", expr, "script nagy i vessző, script nagy m")?; + test("hu", "SimpleSpeak", expr, "alsó index nagy i, vessző, alsó index nagy m")?; return Ok(()); } @@ -37,7 +37,7 @@ fn greek() -> Result<()> { #[test] fn cap_cyrillic() -> Result<()> { let expr = " А,Я"; - test("hu", "SimpleSpeak", expr, "nagybetű а vessző, nagybetű ya")?; + test("hu", "SimpleSpeak", expr, "nagy а vessző, nagy ciril ya")?; return Ok(()); } @@ -120,14 +120,14 @@ fn double_struck() -> Result<()> { #[test] fn script() -> Result<()> { let expr = " 𝒜,𝒵"; - test("hu", "SimpleSpeak", expr, "script nagy a vessző, script nagy z")?; + test("hu", "SimpleSpeak", expr, "alsó index nagy a, vessző, alsó index nagy z")?; let expr = " 𝒶,𝓏"; - test("hu", "SimpleSpeak", expr, "script a vessző, script z")?; + test("hu", "SimpleSpeak", expr, "alsó index a vessző, alsó index z")?; // MathType private space versions let expr = " ,"; - test("hu", "SimpleSpeak", expr, "script nagy a vessző, script nagy z")?; + test("hu", "SimpleSpeak", expr, "alsó index nagy a, vessző, alsó index nagy z")?; let expr = " ,"; - test("hu", "SimpleSpeak", expr, "script a vessző, script z")?; + test("hu", "SimpleSpeak", expr, "alsó index a vessző, alsó index z")?; return Ok(()); } @@ -136,14 +136,14 @@ fn script() -> Result<()> { #[test] fn bold_script() -> Result<()> { let expr = " 𝓐,𝓩"; - test("hu", "SimpleSpeak", expr, "script félkövér nagy a, vessző; script félkövér nagy z")?; + test("hu", "SimpleSpeak", expr, "alsó index félkövér nagy a, vessző; alsó index félkövér nagy z")?; let expr = " 𝓪,𝔃"; - test("hu", "SimpleSpeak", expr, "script félkövér a, vessző, script félkövér z")?; + test("hu", "SimpleSpeak", expr, "alsó index félkövér a, vessző; alsó index félkövér z")?; // MathType private space versions let expr = " ,"; - test("hu", "SimpleSpeak", expr, "script félkövér nagy a, vessző; script félkövér nagy z")?; + test("hu", "SimpleSpeak", expr, "alsó index félkövér nagy a, vessző; alsó index félkövér nagy z")?; let expr = " ,"; - test("hu", "SimpleSpeak", expr, "script félkövér a, vessző, script félkövér z")?; + test("hu", "SimpleSpeak", expr, "alsó index félkövér a, vessző; alsó index félkövér z")?; return Ok(()); } @@ -434,7 +434,7 @@ fn enclosed_numbers() -> Result<()> { let expr = " ,"; test("hu", "SimpleSpeak", expr, "bekarikázott 1 vessző, bekarikázott 9")?; let expr = " ,"; - test("hu", "SimpleSpeak", expr, "fekete bekarikázott egy, vessző; bekarikázott szám ötven")?; + test("hu", "SimpleSpeak", expr, "fekete bekarikázott egy, vessző; bekarikázott ötvenes szám")?; let expr = " ,"; test("hu", "SimpleSpeak", expr, "zárójeles 1 vessző, zárójeles 9")?; let expr = " ,"; From 36576deecb12a0c2658d0079994807218701665a Mon Sep 17 00:00:00 2001 From: Attila Hammer Date: Sat, 25 Jul 2026 21:07:25 +0200 Subject: [PATCH 3/6] Rules/Languages/hu/unicode.yaml: removed extra unneed rules after upstream english rules synchronizations Signed-off-by: Attila Hammer --- Rules/Languages/hu/unicode.yaml | 45 +-------------------------------- 1 file changed, 1 insertion(+), 44 deletions(-) diff --git a/Rules/Languages/hu/unicode.yaml b/Rules/Languages/hu/unicode.yaml index 3f92aece..47c8e775 100644 --- a/Rules/Languages/hu/unicode.yaml +++ b/Rules/Languages/hu/unicode.yaml @@ -529,49 +529,6 @@ - T: "szuperhalmaza vagy egyenlő" # (en: 'superset of or equal to', DeepL translation) # --- restored short definitions that differ from unicode-full --- - - "–": [T: "en kötőjel"] # 0x2013 (en: 'en dash', DeepL translation) - - "—": [T: "em kötőjel"] # 0x2014 (en: 'em dash', DeepL translation) - - "―": [T: "vízszintes sáv"] # 0x2015 (en: 'horizontal bar', DeepL translation) - - "‖": [T: "dupla függőleges vonal"] # 0x2016 (en: 'double vertical line', DeepL translation) - - "′": [T: "prím"] # 0x2032 (en: 'prime', DeepL translation) - - "″": [T: "dupla prím"] # 0x2033 (en: 'double prime', DeepL translation) - - "‴": [T: "hármas prím"] # 0x2034 (en: 'triple prime', DeepL translation) - - "℉": [T: "fahrenheit fok"] # 0x2109 (en: 'degrees fahrenheit', DeepL translation) - - "ℎ": [T: "planck-állandó"] # 0x210e (en: 'planck constant', DeepL translation) - - "Ω": [T: "ohm"] # 0x2126 (en: 'ohms', DeepL translation) - - "K": [T: "kelvin"] # 0x212a (DeepL translation) - - "Å": [T: "angström"] # 0x212b (en: 'angstroms', DeepL translation) - "⇒": [T: "dupla jobbranyíl"] # 0x21d2 (en: 'right double arrow', DeepL translation) - - "∀": [T: "minden"] # 0x2200 (en: 'for all', DeepL translation) - - "∃": [T: "létezik"] # 0x2203 (en: 'there exists', DeepL translation) - - "∄": [T: "nem létezik"] # 0x2204 (en: 'there does not exist', DeepL translation) - - "∅": [T: "üres halmaz"] # 0x2205 (en: 'empty set', DeepL translation) - - "∏": [T: "produktum"] # 0x220f (en: 'product', DeepL translation) - "∐": [T: "diszjunkt unió"] # 0x2210 (en: 'co-product', DeepL translation) - - "∑": [T: "összeg"] # 0x2211 (DeepL translation) - - "−": [T: "mínusz"] # 0x2212 (en: 'minus', DeepL translation) - - "∓": [T: "mínusz vagy plusz"] # 0x2213 (en: 'minus or plus', DeepL translation) - - "∗": [T: "csillag operátortimes"] # 0x2217 (DeepL translation) - - "∘": [T: "gyűrű operátor"] # 0x2218 (en: 'composed with', DeepL translation) - - "∞": [T: "végtelen"] # 0x221e (en: 'infinity', DeepL translation) - - "∟": [T: "derékszög"] # 0x221f (en: 'right angle', DeepL translation) - - "∠": [T: "szög"] # 0x2220 (en: 'angle', DeepL translation) - - "∡": [T: "mért szög"] # 0x2221 (en: 'measured angle', DeepL translation) - - "∣": [T: "osztója"] # 0x2223 (en: 'divides', DeepL translation) - - "∤": [T: "nem osztója"] # 0x2224 (en: 'does not divide', DeepL translation) - - "∧": [T: "logikai és"] # 0x2227 (en: 'and', DeepL translation) - - "∨": [T: "logikai vagy"] # 0x2228 (en: 'or', DeepL translation) - - "∩": [T: "metszéspont"] # 0x2229 (en: 'intersection', DeepL translation) - - "∪": [T: "unió"] # 0x222a (en: 'union', DeepL translation) - - "∫": [T: "integrál"] # 0x222b (en: 'integral', DeepL translation) - - "∬": [T: "kettős integrál"] # 0x222c (en: 'double integral', DeepL translation) - - "∭": [T: "hármas integrál"] # 0x222d (en: 'triple integral', DeepL translation) - - "∮": [T: "kontúr integrál"] # 0x222e (en: 'contour integral', DeepL translation) - - "∷": [T: "arány"] # 0x2237 (DeepL translation) - - "∼": [T: "változik"] # 0x223c (en: 'varies with', DeepL translation) - - "∽": [T: "fordított tilde"] # 0x223d (en: 'reversed tilde', DeepL translation) - - "∿": [T: "szinuszhullám"] # 0x223f (en: 'sine wave', DeepL translation) - - "≦": [T: "kisebb, mint egyenlő"] # 0x2266 (en: 'less than over equal to', DeepL translation) - - "≧": [T: "nagyobb, mint az egyenlő"] # 0x2267 (en: 'greater than over equal to', DeepL translation) - - "≺": [T: "megelőzi"] # 0x227a (en: 'precedes', DeepL translation) - - "≻": [T: "követi"] # 0x227b (en: 'succeeds', DeepL translation) + From b05819dca9668dc5776608184c95ccbef09456a1 Mon Sep 17 00:00:00 2001 From: Attila Hammer Date: Sat, 25 Jul 2026 21:18:56 +0200 Subject: [PATCH 4/6] Fix integral tests after hungarian unicode.yaml and unicode_full.yaml files cleanup Signed-off-by: Attila Hammer --- tests/Languages/hu/ClearSpeak/large_ops.rs | 6 +++--- tests/Languages/hu/SimpleSpeak/large_ops.rs | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/Languages/hu/ClearSpeak/large_ops.rs b/tests/Languages/hu/ClearSpeak/large_ops.rs index c50d483b..d2c70157 100644 --- a/tests/Languages/hu/ClearSpeak/large_ops.rs +++ b/tests/Languages/hu/ClearSpeak/large_ops.rs @@ -217,7 +217,7 @@ fn integral_both() -> Result<()> { dx "; - test("hu", "ClearSpeak", expr, "integrál ettől: 0, eddig: 1 értéke:; f x; d x")?; + test("hu", "ClearSpeak", expr, "integrált ettől: 0, eddig: 1 értéke:; f x; d x")?; return Ok(()); } @@ -233,7 +233,7 @@ fn integral_under() -> Result<()> { f(x ) dx "; - test("hu", "ClearSpeak", expr, "integrál alatta a valós számok halmaza; f x d x")?; + test("hu", "ClearSpeak", expr, "integrált alatta a valós számok halmaza; f x d x")?; return Ok(()); } @@ -246,7 +246,7 @@ fn integral() -> Result<()> { f(x ) dx "; - test("hu", "ClearSpeak", expr, "integrál f x d x")?; + test("hu", "ClearSpeak", expr, "integrált f x d x")?; return Ok(()); } diff --git a/tests/Languages/hu/SimpleSpeak/large_ops.rs b/tests/Languages/hu/SimpleSpeak/large_ops.rs index 09e30e10..c76ce150 100644 --- a/tests/Languages/hu/SimpleSpeak/large_ops.rs +++ b/tests/Languages/hu/SimpleSpeak/large_ops.rs @@ -217,7 +217,7 @@ fn integral_both() -> Result<()> { dx "; - test("hu", "SimpleSpeak", expr, "integrál ettől: 0, eddig: 1 értéke:; f x; d x")?; + test("hu", "SimpleSpeak", expr, "integrált ettől: 0, eddig: 1 értéke:; f x; d x")?; return Ok(()); } @@ -233,7 +233,7 @@ fn integral_under() -> Result<()> { f(x ) dx "; - test("hu", "SimpleSpeak", expr, "integrál alatta a valós számok halmaza; f x d x")?; + test("hu", "SimpleSpeak", expr, "integrált alatta a valós számok halmaza; f x d x")?; return Ok(()); } @@ -246,7 +246,7 @@ fn integral() -> Result<()> { f(x ) dx "; - test("hu", "SimpleSpeak", expr, "integrál f x d x")?; + test("hu", "SimpleSpeak", expr, "integrált f x d x")?; return Ok(()); } From 20a30da15013c6020bf2169998c207ca152ffbe7 Mon Sep 17 00:00:00 2001 From: Attila Hammer Date: Sun, 26 Jul 2026 12:38:40 +0200 Subject: [PATCH 5/6] Rules/Languages/hu/SharedRules/default.yaml: added new english translated messages hungarian translations Signed-off-by: Attila Hammer --- Rules/Languages/hu/SharedRules/default.yaml | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/Rules/Languages/hu/SharedRules/default.yaml b/Rules/Languages/hu/SharedRules/default.yaml index 89aae5c0..b218667d 100644 --- a/Rules/Languages/hu/SharedRules/default.yaml +++ b/Rules/Languages/hu/SharedRules/default.yaml @@ -62,7 +62,7 @@ - test: - if: "string-length(.) = 1 and text() != '_'" # need unicode.tdl to kick in for single letter tokens then: [x: "text()"] - - else_if: "@data-chem-element or @data-roman-numeral" # NavMode=Character needs this + - else_if: "@data-chem-element > 0 or @data-roman-numeral" # NavMode=Character needs this then: [SPELL: "text()", pause: "short"] else: [x: "translate(., '-_\u00A0', ' ')"] # from intent literals or from extra spaces added (which get deleted) @@ -237,12 +237,26 @@ - x: "*[2]" - T: "alatt" # phrase(x with z 'below' it) +# FIX: this only works for up to four dots (which is realistically all we need) +- name: dot-over + tag: modified-variable + match: "*[1][self::m:mi] and (*[2][translate(., '.', '')=''])" + replace: + - x: "*[1]" + - x: "IfThenElse(string-length(*[2])=1, 'pont', + IfThenElse(string-length(*[2])=2, 'pont pont', + IfThenElse(string-length(*[2])=3, 'pont pont pont', 'pont pont pont pont') + ))" + - pause: short + +# FIX: the 'translate' list is a little different from 'modified-variable', so we also include 'mover' (unify?) - name: diacriticals - tag: mover + tag: [mover, modified-variable] match: "*[1][self::m:mi] and *[2][translate(., '\u0306\u030c.\u00A8\u02D9\u20DB\u20DC`^ˇ~→¯_', '')='']" replace: - x: "*[1]" - x: "*[2]" + - pause: short - name: default tag: mover From 817a9c08edc14aaa48dd1a84839b9c4450352f28 Mon Sep 17 00:00:00 2001 From: Attila Hammer Date: Fri, 31 Jul 2026 14:32:21 +0200 Subject: [PATCH 6/6] Rules/Languages/hu/SharedRules/general.yaml: Add english principal logarithm related change to the hungarian file, updated the translation Signed-off-by: Attila Hammer --- Rules/Languages/hu/SharedRules/general.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Rules/Languages/hu/SharedRules/general.yaml b/Rules/Languages/hu/SharedRules/general.yaml index a5363878..0637bf6e 100644 --- a/Rules/Languages/hu/SharedRules/general.yaml +++ b/Rules/Languages/hu/SharedRules/general.yaml @@ -469,15 +469,17 @@ - name: log # handle both log and ln (if in an mrow, 'intents' are used) tag: mi - match: ".='log' or .='ln'" + match: ".='log' or .='Log' or .='ln'" replace: - bookmark: "@id" - test: - if: "$Verbosity!='Terse'" - then: [T: ""] # phrase('the' logarithm function is used in mathematics) + then: [OT: ""] # phrase('the' logarithm function is used in mathematics) - test: - if: ".= 'log'" then: [T: "logaritmus"] # phrase(the 'log' function is used in mathematics) + - else_if: ".= 'Log'" + then: [T: "logaritmus főértéke"] - else_if: "$Verbosity='Terse'" then: [SPELL: "'ln'"] else: [T: "természetes alapú logaritmus"] # phrase(the 'natural log' function is used in mathematics)