| Nom du symbole | Nor |
| Version Unicode | 1.1 |
| Unicode | U+22BD |
| Bloc Unicode | |
| Catégorie générale | Math Symbol (Sm) |
| Code CSS | \22BD |
| Code hexadécimal | 0x22BD |
| Code HTML | ⊽ |
| LaTeX | \mathrm{⊽} |
| Symbole | ⊽ |
| Encodage URL (pourcent UTF-8) | %E2%8A%BD |
| Nom oral / lecteur d’écran | Nor |
| UTF-8 | E2 8A BD |
| UTF-16 | 22BD |
| UTF-32 | 000022BD |
1\documentclass{article}2\usepackage{pifont}3\mathrm{⊽}4\end{document}Vous pouvez saisir le symbole nor sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8893 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "nor", or use Unicode Hex Input with 22BD.
Ctrl + Shift + U, type 22bd, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the symbol keyboard.
Paste from this page or use a keyboard with math symbol support.
1span.nor::before { content: "\22BD"; }1<span>⊽</span>La représentation du symbole Nor dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u22BD' or String.fromCodePoint(0x22BD) |
| Python | '\N{NOR}' or chr(8893) |
| Rust | '\u{22BD}' |
| C / C++ | UTF-8 source or wchar_t with U+22BD |
| Go | string(rune(0x22BD)) |
| Ruby | "\u22BD" |