C:
char c = '\u5595';
printf("%c\n", c); // Output: 喕
JavaScript:
const char = '\u5595';
console.log(char); // Output: 喕
Java:
char c = '\u5595';
System.out.println(c); // Output: 喕
JSON:
{"text": "\u5595"} // Value: 喕
Python:
char = '\u5595'
print(char) # Output: 喕
Perl:
my $char = "\x{5595}";
print $char; # Output: 喕
PHP:
$char = "\x{5595}";
echo $char; // Output: 喕
Ruby:
char = "\u{5595}"
puts char # Output: 喕
Rust:
let c = '\u{5595}';
println!("{}", c); // Output: 喕
Go:
char := '\u5595'
fmt.Printf("%c\n", char) // Output: 喕
CSS:
/* CSS content property */
.element::before {
content: "\005595"; /* 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%95
MD5:
bc2f9539a0bb41a237232a07d8b315c2
SHA1:
9b4a812150c0893f84e50cebc6c0aa1e0fe263ef
Base64:
5ZaV