C:
char c = '\u8906';
printf("%c\n", c); // Output: 褆
JavaScript:
const char = '\u8906';
console.log(char); // Output: 褆
Java:
char c = '\u8906';
System.out.println(c); // Output: 褆
JSON:
{"text": "\u8906"} // Value: 褆
Python:
char = '\u8906'
print(char) # Output: 褆
Perl:
my $char = "\x{8906}";
print $char; # Output: 褆
PHP:
$char = "\x{8906}";
echo $char; // Output: 褆
Ruby:
char = "\u{8906}"
puts char # Output: 褆
Rust:
let c = '\u{8906}';
println!("{}", c); // Output: 褆
Go:
char := '\u8906'
fmt.Printf("%c\n", char) // Output: 褆
CSS:
/* CSS content property */
.element::before {
content: "\008906"; /* 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%86
MD5:
2025f920358b6958009793c33a27459c
SHA1:
5e3dad01062b185dfc2a9ea55f99f6558c2a30db
Base64:
6KSG