C:
char c = '\u5589';
printf("%c\n", c); // Output: 喉
JavaScript:
const char = '\u5589';
console.log(char); // Output: 喉
Java:
char c = '\u5589';
System.out.println(c); // Output: 喉
JSON:
{"text": "\u5589"} // Value: 喉
Python:
char = '\u5589'
print(char) # Output: 喉
Perl:
my $char = "\x{5589}";
print $char; # Output: 喉
PHP:
$char = "\x{5589}";
echo $char; // Output: 喉
Ruby:
char = "\u{5589}"
puts char # Output: 喉
Rust:
let c = '\u{5589}';
println!("{}", c); // Output: 喉
Go:
char := '\u5589'
fmt.Printf("%c\n", char) // Output: 喉
CSS:
/* CSS content property */
.element::before {
content: "\005589"; /* 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%96%89
MD5:
67ddbf017c6869732682304c550631b8
SHA1:
f2717ed4bf371959408d5fd0235d02dd989b9fca
Base64:
5ZaJ