C:
char c = '\u8070';
printf("%c\n", c); // Output: 聰
JavaScript:
const char = '\u8070';
console.log(char); // Output: 聰
Java:
char c = '\u8070';
System.out.println(c); // Output: 聰
JSON:
{"text": "\u8070"} // Value: 聰
Python:
char = '\u8070'
print(char) # Output: 聰
Perl:
my $char = "\x{8070}";
print $char; # Output: 聰
PHP:
$char = "\x{8070}";
echo $char; // Output: 聰
Ruby:
char = "\u{8070}"
puts char # Output: 聰
Rust:
let c = '\u{8070}';
println!("{}", c); // Output: 聰
Go:
char := '\u8070'
fmt.Printf("%c\n", char) // Output: 聰
CSS:
/* CSS content property */
.element::before {
content: "\008070"; /* 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%B0
MD5:
5bbe18bb2c94598dd5d9053291cdd9ae
SHA1:
32c9744c239a071a476836c5f5eab246b37e3859
Base64:
6IGw