| Nom du symbole | Because |
| Version Unicode | 1.1 |
| Unicode | U+2235 |
| Bloc Unicode | |
| Catégorie générale | Math Symbol (Sm) |
| Code CSS | \2235 |
| Code hexadécimal | 0x2235 |
| Code HTML | ∵ |
| LaTeX | \because |
| Symbole | ∵ |
| Encodage URL (pourcent UTF-8) | %E2%88%B5 |
| Nom oral / lecteur d’écran | Because |
| UTF-8 | E2 88 B5 |
| UTF-16 | 2235 |
| UTF-32 | 00002235 |
1\documentclass{article}2\usepackage{pifont}3\because 4\end{document}Vous pouvez saisir le symbole because sur la plupart des appareils modernes avec les méthodes suivantes :
Alt + 8757 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "because", or use Unicode Hex Input with 2235.
Ctrl + Shift + U, type 2235, 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.because::before { content: "\2235"; }1<span>∵</span>La représentation du symbole Because dans différents langages de programmation se trouve dans le tableau ci-dessous :
| Langage | Représentation |
|---|---|
| JavaScript / TypeScript | '\u2235' or String.fromCodePoint(0x2235) |
| Python | '\N{BECAUSE}' or chr(8757) |
| Rust | '\u{2235}' |
| C / C++ | UTF-8 source or wchar_t with U+2235 |
| Go | string(rune(0x2235)) |
| Ruby | "\u2235" |