C:
char c = '\u1892';
printf("%c\n", c); // Output: ᢒ
JavaScript:
const char = '\u1892';
console.log(char); // Output: ᢒ
Java:
char c = '\u1892';
System.out.println(c); // Output: ᢒ
JSON:
{"text": "\u1892"} // Value: ᢒ
Python:
char = '\u1892'
print(char) # Output: ᢒ
Perl:
my $char = "\x{1892}";
print $char; # Output: ᢒ
PHP:
$char = "\x{1892}";
echo $char; // Output: ᢒ
Ruby:
char = "\u{1892}"
puts char # Output: ᢒ
Rust:
let c = '\u{1892}';
println!("{}", c); // Output: ᢒ
Go:
char := '\u1892'
fmt.Printf("%c\n", char) // Output: ᢒ
CSS:
/* CSS content property */
.element::before {
content: "\001892"; /* 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%A2%92
MD5:
a0f345930145f97f1ca88c8db2db4741
SHA1:
1df3505cc38ab078fc0b79d24869393e1f0d8219
Base64:
4aKS