C:
char c = '\u8919';
printf("%c\n", c); // Output: 褙
JavaScript:
const char = '\u8919';
console.log(char); // Output: 褙
Java:
char c = '\u8919';
System.out.println(c); // Output: 褙
JSON:
{"text": "\u8919"} // Value: 褙
Python:
char = '\u8919'
print(char) # Output: 褙
Perl:
my $char = "\x{8919}";
print $char; # Output: 褙
PHP:
$char = "\x{8919}";
echo $char; // Output: 褙
Ruby:
char = "\u{8919}"
puts char # Output: 褙
Rust:
let c = '\u{8919}';
println!("{}", c); // Output: 褙
Go:
char := '\u8919'
fmt.Printf("%c\n", char) // Output: 褙
CSS:
/* CSS content property */
.element::before {
content: "\008919"; /* 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%99
MD5:
2aff47dcae3b70cd763ca11eec9f49d1
SHA1:
f083e10795c72f7a86147f4b8dceed89f0d57438
Base64:
6KSZ