C:
char c = '\u194A';
printf("%c\n", c); // Output: ᥊
JavaScript:
const char = '\u194A';
console.log(char); // Output: ᥊
Java:
char c = '\u194A';
System.out.println(c); // Output: ᥊
JSON:
{"text": "\u194A"} // Value: ᥊
Python:
char = '\u194A'
print(char) # Output: ᥊
Perl:
my $char = "\x{194A}";
print $char; # Output: ᥊
PHP:
$char = "\x{194A}";
echo $char; // Output: ᥊
Ruby:
char = "\u{194A}"
puts char # Output: ᥊
Rust:
let c = '\u{194A}';
println!("{}", c); // Output: ᥊
Go:
char := '\u194A'
fmt.Printf("%c\n", char) // Output: ᥊
CSS:
/* CSS content property */
.element::before {
content: "\00194A"; /* 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%A5%8A
MD5:
6fc99334d6085f456a3d3c54053e1b1e
SHA1:
5026cd8268549db6430f2410d2892e158e77794d
Base64:
4aWK