C:
char c = '\u8931';
printf("%c\n", c); // Output: 褱
JavaScript:
const char = '\u8931';
console.log(char); // Output: 褱
Java:
char c = '\u8931';
System.out.println(c); // Output: 褱
JSON:
{"text": "\u8931"} // Value: 褱
Python:
char = '\u8931'
print(char) # Output: 褱
Perl:
my $char = "\x{8931}";
print $char; # Output: 褱
PHP:
$char = "\x{8931}";
echo $char; // Output: 褱
Ruby:
char = "\u{8931}"
puts char # Output: 褱
Rust:
let c = '\u{8931}';
println!("{}", c); // Output: 褱
Go:
char := '\u8931'
fmt.Printf("%c\n", char) // Output: 褱
CSS:
/* CSS content property */
.element::before {
content: "\008931"; /* 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%B1
MD5:
52073e35ccb7fbeab7d1bd4fdba53dc7
SHA1:
d89edeb419c3c06c085382bd559f5febeb6baea9
Base64:
6KSx