| Symboolnaam | Latin Small Letter J |
| Unicode-versie | 1.1 |
| Unicode | U+006A |
| Unicode-blok | |
| Algemene categorie | Lowercase Letter (Ll) |
| CSS-code | \006A |
| Hexadecimale code | 0x006A |
| HTML-code | fj |
| LaTeX | j |
| Symbool | j |
| URL-codering (UTF-8 procent) | %6A |
| Uitgesproken naam / schermlezer | Latin Small Letter J |
| UTF-8 | 6A |
| UTF-16 | 006A |
| UTF-32 | 0000006A |
1\documentclass{article}2\usepackage{pifont}3j4\end{document}Je kunt het latin small letter j-symbool op de meeste moderne apparaten typen met de volgende methoden:
Alt + 106 on Windows (numeric keypad with Num Lock), or insert via Character Map.
Edit → Emoji & Symbols, search "latin small letter j", or use Unicode Hex Input with 006A.
Ctrl + Shift + U, type 006a, then Enter (layout-dependent).
Paste from this page, use text replacement, or pick from the Latin keyboard.
Paste from this page or use a keyboard with Latin letter support.
1span.j::before { content: "\006A"; font-family: "Charis SIL", "Doulos SIL", "DejaVu Serif", "Times New Roman", serif; }1<span>fj</span>De weergave van het Latin Small Letter J-symbool in verschillende programmeertalen vind je in onderstaande tabel:
| Taal | Weergave |
|---|---|
| JavaScript / TypeScript | '\u006A' or String.fromCodePoint(106) |
| Python | '\N{LATIN SMALL LETTER J}' or chr(106) |
| Rust | '\u{006A}' |
| C / C++ | UTF-8 source or wchar_t with U+006A |
| Go | string(rune(0x006A)) |
| Ruby | "\u{006A}" |