C:
char c = '\u1872';
printf("%c\n", c); // Output: ᡲ
JavaScript:
const char = '\u1872';
console.log(char); // Output: ᡲ
Java:
char c = '\u1872';
System.out.println(c); // Output: ᡲ
JSON:
{"text": "\u1872"} // Value: ᡲ
Python:
char = '\u1872'
print(char) # Output: ᡲ
Perl:
my $char = "\x{1872}";
print $char; # Output: ᡲ
PHP:
$char = "\x{1872}";
echo $char; // Output: ᡲ
Ruby:
char = "\u{1872}"
puts char # Output: ᡲ
Rust:
let c = '\u{1872}';
println!("{}", c); // Output: ᡲ
Go:
char := '\u1872'
fmt.Printf("%c\n", char) // Output: ᡲ
CSS:
/* CSS content property */
.element::before {
content: "\001872"; /* Display: ᡲ */
}
HTML Decimal:
<p>HTML decimal: ᡲ</p> <!-- Display: ᡲ -->
HTML Hexadecimal:
<p>HTML hex: ᡲ</p> <!-- Display: ᡲ -->
URL Encoding:
// ᡲ URL encoding
https://unicodefinder.com/search.php?query=%E1%A1%B2
MD5:
f3e1585479a70053f618f8a619035044
SHA1:
e0b0e5f92f35ca4168de89dd45cd34b0004cd8ae
Base64:
4aGy