C:
char c = '\u1914';
printf("%c\n", c); // Output: ᤔ
JavaScript:
const char = '\u1914';
console.log(char); // Output: ᤔ
Java:
char c = '\u1914';
System.out.println(c); // Output: ᤔ
JSON:
{"text": "\u1914"} // Value: ᤔ
Python:
char = '\u1914'
print(char) # Output: ᤔ
Perl:
my $char = "\x{1914}";
print $char; # Output: ᤔ
PHP:
$char = "\x{1914}";
echo $char; // Output: ᤔ
Ruby:
char = "\u{1914}"
puts char # Output: ᤔ
Rust:
let c = '\u{1914}';
println!("{}", c); // Output: ᤔ
Go:
char := '\u1914'
fmt.Printf("%c\n", char) // Output: ᤔ
CSS:
/* CSS content property */
.element::before {
content: "\001914"; /* 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%A4%94
MD5:
2e8c2d70a7237d429930c3d796273bb7
SHA1:
515a337303e0227fb03ede28a0c1aed51a549d0a
Base64:
4aSU