C:
char c = '\uA412';
printf("%c\n", c); // Output: ꐒ
JavaScript:
const char = '\uA412';
console.log(char); // Output: ꐒ
Java:
char c = '\uA412';
System.out.println(c); // Output: ꐒ
JSON:
{"text": "\uA412"} // Value: ꐒ
Python:
char = '\uA412'
print(char) # Output: ꐒ
Perl:
my $char = "\x{A412}";
print $char; # Output: ꐒ
PHP:
$char = "\x{A412}";
echo $char; // Output: ꐒ
Ruby:
char = "\u{A412}"
puts char # Output: ꐒ
Rust:
let c = '\u{A412}';
println!("{}", c); // Output: ꐒ
Go:
char := '\uA412'
fmt.Printf("%c\n", char) // Output: ꐒ
CSS:
/* CSS content property */
.element::before {
content: "\00A412"; /* 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=%EA%90%92
MD5:
fb67ec5f1901b754aefd4d6c7a27f88d
SHA1:
1683a8dd3b0b1745acafca4e3d56fca482edf67b
Base64:
6pCS