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