C:
char c = '\u8073';
printf("%c\n", c); // Output: 聳
JavaScript:
const char = '\u8073';
console.log(char); // Output: 聳
Java:
char c = '\u8073';
System.out.println(c); // Output: 聳
JSON:
{"text": "\u8073"} // Value: 聳
Python:
char = '\u8073'
print(char) # Output: 聳
Perl:
my $char = "\x{8073}";
print $char; # Output: 聳
PHP:
$char = "\x{8073}";
echo $char; // Output: 聳
Ruby:
char = "\u{8073}"
puts char # Output: 聳
Rust:
let c = '\u{8073}';
println!("{}", c); // Output: 聳
Go:
char := '\u8073'
fmt.Printf("%c\n", char) // Output: 聳
CSS:
/* CSS content property */
.element::before {
content: "\008073"; /* 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=%E8%81%B3
MD5:
1153b368242989b880953eb6a91ee869
SHA1:
f21196c8920d7f760d3250b07a61e91d7a9cf81a
Base64:
6IGz