C:
char c = '\u1814';
printf("%c\n", c); // Output: ᠔
JavaScript:
const char = '\u1814';
console.log(char); // Output: ᠔
Java:
char c = '\u1814';
System.out.println(c); // Output: ᠔
JSON:
{"text": "\u1814"} // Value: ᠔
Python:
char = '\u1814'
print(char) # Output: ᠔
Perl:
my $char = "\x{1814}";
print $char; # Output: ᠔
PHP:
$char = "\x{1814}";
echo $char; // Output: ᠔
Ruby:
char = "\u{1814}"
puts char # Output: ᠔
Rust:
let c = '\u{1814}';
println!("{}", c); // Output: ᠔
Go:
char := '\u1814'
fmt.Printf("%c\n", char) // Output: ᠔
CSS:
/* CSS content property */
.element::before {
content: "\001814"; /* 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%94
MD5:
f8bf0f998b125e706e4bc24a88de40a5
SHA1:
666fcbf5a370a93ef8975f5c55812f0994448ae9
Base64:
4aCU