C:
char c = '\u5473';
printf("%c\n", c); // Output: 味
JavaScript:
const char = '\u5473';
console.log(char); // Output: 味
Java:
char c = '\u5473';
System.out.println(c); // Output: 味
JSON:
{"text": "\u5473"} // Value: 味
Python:
char = '\u5473'
print(char) # Output: 味
Perl:
my $char = "\x{5473}";
print $char; # Output: 味
PHP:
$char = "\x{5473}";
echo $char; // Output: 味
Ruby:
char = "\u{5473}"
puts char # Output: 味
Rust:
let c = '\u{5473}';
println!("{}", c); // Output: 味
Go:
char := '\u5473'
fmt.Printf("%c\n", char) // Output: 味
CSS:
/* CSS content property */
.element::before {
content: "\005473"; /* 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=%E5%91%B3
MD5:
e38a9cf0d5beb551f8fe9ddaa7871d8d
SHA1:
df96a6e9ec6599716150d5df160abf04f3b84758
Base64:
5ZGz