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