C:
char c = '\u8904';
printf("%c\n", c); // Output: 褄
JavaScript:
const char = '\u8904';
console.log(char); // Output: 褄
Java:
char c = '\u8904';
System.out.println(c); // Output: 褄
JSON:
{"text": "\u8904"} // Value: 褄
Python:
char = '\u8904'
print(char) # Output: 褄
Perl:
my $char = "\x{8904}";
print $char; # Output: 褄
PHP:
$char = "\x{8904}";
echo $char; // Output: 褄
Ruby:
char = "\u{8904}"
puts char # Output: 褄
Rust:
let c = '\u{8904}';
println!("{}", c); // Output: 褄
Go:
char := '\u8904'
fmt.Printf("%c\n", char) // Output: 褄
CSS:
/* CSS content property */
.element::before {
content: "\008904"; /* 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%A4%84
MD5:
9d6fbf6227c007c57970d5f867e35811
SHA1:
c148fa05afe1c5de84b55b5db3a620828d9bfff9
Base64:
6KSE