C:
char c = '\u8068';
printf("%c\n", c); // Output: 聨
JavaScript:
const char = '\u8068';
console.log(char); // Output: 聨
Java:
char c = '\u8068';
System.out.println(c); // Output: 聨
JSON:
{"text": "\u8068"} // Value: 聨
Python:
char = '\u8068'
print(char) # Output: 聨
Perl:
my $char = "\x{8068}";
print $char; # Output: 聨
PHP:
$char = "\x{8068}";
echo $char; // Output: 聨
Ruby:
char = "\u{8068}"
puts char # Output: 聨
Rust:
let c = '\u{8068}';
println!("{}", c); // Output: 聨
Go:
char := '\u8068'
fmt.Printf("%c\n", char) // Output: 聨
CSS:
/* CSS content property */
.element::before {
content: "\008068"; /* 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%A8
MD5:
57804472afe8d6e3485ca04f02c6a11a
SHA1:
c8b48c46d1ed509809d2d88d8a45276f4d4709a6
Base64:
6IGo