C:
char c = '\u1944';
printf("%c\n", c); // Output: ᥄
JavaScript:
const char = '\u1944';
console.log(char); // Output: ᥄
Java:
char c = '\u1944';
System.out.println(c); // Output: ᥄
JSON:
{"text": "\u1944"} // Value: ᥄
Python:
char = '\u1944'
print(char) # Output: ᥄
Perl:
my $char = "\x{1944}";
print $char; # Output: ᥄
PHP:
$char = "\x{1944}";
echo $char; // Output: ᥄
Ruby:
char = "\u{1944}"
puts char # Output: ᥄
Rust:
let c = '\u{1944}';
println!("{}", c); // Output: ᥄
Go:
char := '\u1944'
fmt.Printf("%c\n", char) // Output: ᥄
CSS:
/* CSS content property */
.element::before {
content: "\001944"; /* 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%84
MD5:
f7e32d9877537e8c3602bece6e1354fd
SHA1:
467cd5dfc792d78a8c2aac105196a7b8e3f99350
Base64:
4aWE