C:
char c = '\u1812';
printf("%c\n", c); // Output: ᠒
JavaScript:
const char = '\u1812';
console.log(char); // Output: ᠒
Java:
char c = '\u1812';
System.out.println(c); // Output: ᠒
JSON:
{"text": "\u1812"} // Value: ᠒
Python:
char = '\u1812'
print(char) # Output: ᠒
Perl:
my $char = "\x{1812}";
print $char; # Output: ᠒
PHP:
$char = "\x{1812}";
echo $char; // Output: ᠒
Ruby:
char = "\u{1812}"
puts char # Output: ᠒
Rust:
let c = '\u{1812}';
println!("{}", c); // Output: ᠒
Go:
char := '\u1812'
fmt.Printf("%c\n", char) // Output: ᠒
CSS:
/* CSS content property */
.element::before {
content: "\001812"; /* 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%A0%92
MD5:
03d7ea81ce8e2b1bca0e94a53e27e3ff
SHA1:
2b9c2da2a7b6cc4a9347aec3756ba55494316ebc
Base64:
4aCS