C:
char c = '\u91A4';
printf("%c\n", c); // Output: 醤
JavaScript:
const char = '\u91A4';
console.log(char); // Output: 醤
Java:
char c = '\u91A4';
System.out.println(c); // Output: 醤
JSON:
{"text": "\u91A4"} // Value: 醤
Python:
char = '\u91A4'
print(char) # Output: 醤
Perl:
my $char = "\x{91A4}";
print $char; # Output: 醤
PHP:
$char = "\x{91A4}";
echo $char; // Output: 醤
Ruby:
char = "\u{91A4}"
puts char # Output: 醤
Rust:
let c = '\u{91A4}';
println!("{}", c); // Output: 醤
Go:
char := '\u91A4'
fmt.Printf("%c\n", char) // Output: 醤
CSS:
/* CSS content property */
.element::before {
content: "\0091A4"; /* 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=%E9%86%A4
MD5:
a65b9d6cc6559af63c29ca7ecfd043db
SHA1:
7896627ace3e71f4c2475746cb677ea49e5f2a56
Base64:
6Yak