C:
char c = '\u1912';
printf("%c\n", c); // Output: ᤒ
JavaScript:
const char = '\u1912';
console.log(char); // Output: ᤒ
Java:
char c = '\u1912';
System.out.println(c); // Output: ᤒ
JSON:
{"text": "\u1912"} // Value: ᤒ
Python:
char = '\u1912'
print(char) # Output: ᤒ
Perl:
my $char = "\x{1912}";
print $char; # Output: ᤒ
PHP:
$char = "\x{1912}";
echo $char; // Output: ᤒ
Ruby:
char = "\u{1912}"
puts char # Output: ᤒ
Rust:
let c = '\u{1912}';
println!("{}", c); // Output: ᤒ
Go:
char := '\u1912'
fmt.Printf("%c\n", char) // Output: ᤒ
CSS:
/* CSS content property */
.element::before {
content: "\001912"; /* 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%92
MD5:
48530d9b087f3ee5be7d68004b0362d9
SHA1:
58bd3ef7c077448f859737d2f6bafbf14f0bed1d
Base64:
4aSS