C:
char c = '\u8924';
printf("%c\n", c); // Output: 褤
JavaScript:
const char = '\u8924';
console.log(char); // Output: 褤
Java:
char c = '\u8924';
System.out.println(c); // Output: 褤
JSON:
{"text": "\u8924"} // Value: 褤
Python:
char = '\u8924'
print(char) # Output: 褤
Perl:
my $char = "\x{8924}";
print $char; # Output: 褤
PHP:
$char = "\x{8924}";
echo $char; // Output: 褤
Ruby:
char = "\u{8924}"
puts char # Output: 褤
Rust:
let c = '\u{8924}';
println!("{}", c); // Output: 褤
Go:
char := '\u8924'
fmt.Printf("%c\n", char) // Output: 褤
CSS:
/* CSS content property */
.element::before {
content: "\008924"; /* 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%A4
MD5:
ca2cf040ede7dc789a23a628249f8d82
SHA1:
353008c6e9f2b21894048962358034c198c2af4c
Base64:
6KSk