C:
char c = '\u8955';
printf("%c\n", c); // Output: 襕
JavaScript:
const char = '\u8955';
console.log(char); // Output: 襕
Java:
char c = '\u8955';
System.out.println(c); // Output: 襕
JSON:
{"text": "\u8955"} // Value: 襕
Python:
char = '\u8955'
print(char) # Output: 襕
Perl:
my $char = "\x{8955}";
print $char; # Output: 襕
PHP:
$char = "\x{8955}";
echo $char; // Output: 襕
Ruby:
char = "\u{8955}"
puts char # Output: 襕
Rust:
let c = '\u{8955}';
println!("{}", c); // Output: 襕
Go:
char := '\u8955'
fmt.Printf("%c\n", char) // Output: 襕
CSS:
/* CSS content property */
.element::before {
content: "\008955"; /* 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%A5%95
MD5:
4eaa1fbd28851b00b587ab703bf83638
SHA1:
0f4381660f5f979e1f227bdc468318bb7b649ed0
Base64:
6KWV