C:
char c = '\u1954';
printf("%c\n", c); // Output: ᥔ
JavaScript:
const char = '\u1954';
console.log(char); // Output: ᥔ
Java:
char c = '\u1954';
System.out.println(c); // Output: ᥔ
JSON:
{"text": "\u1954"} // Value: ᥔ
Python:
char = '\u1954'
print(char) # Output: ᥔ
Perl:
my $char = "\x{1954}";
print $char; # Output: ᥔ
PHP:
$char = "\x{1954}";
echo $char; // Output: ᥔ
Ruby:
char = "\u{1954}"
puts char # Output: ᥔ
Rust:
let c = '\u{1954}';
println!("{}", c); // Output: ᥔ
Go:
char := '\u1954'
fmt.Printf("%c\n", char) // Output: ᥔ
CSS:
/* CSS content property */
.element::before {
content: "\001954"; /* 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%94
MD5:
3a7f39ba03dc6dc32d9694aa7a894495
SHA1:
dce53b05a208d9831703e70ebe99d5024dfbc492
Base64:
4aWU