C:
char c = '\u8900';
printf("%c\n", c); // Output: 褀
JavaScript:
const char = '\u8900';
console.log(char); // Output: 褀
Java:
char c = '\u8900';
System.out.println(c); // Output: 褀
JSON:
{"text": "\u8900"} // Value: 褀
Python:
char = '\u8900'
print(char) # Output: 褀
Perl:
my $char = "\x{8900}";
print $char; # Output: 褀
PHP:
$char = "\x{8900}";
echo $char; // Output: 褀
Ruby:
char = "\u{8900}"
puts char # Output: 褀
Rust:
let c = '\u{8900}';
println!("{}", c); // Output: 褀
Go:
char := '\u8900'
fmt.Printf("%c\n", char) // Output: 褀
CSS:
/* CSS content property */
.element::before {
content: "\008900"; /* 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%80
MD5:
42f4a7b3e0ee513fc88297fa4b69409a
SHA1:
76acf6d9a652988bd2b6898f7880c80a4f2faa97
Base64:
6KSA