C:
char c = '\u8921';
printf("%c\n", c); // Output: 褡
JavaScript:
const char = '\u8921';
console.log(char); // Output: 褡
Java:
char c = '\u8921';
System.out.println(c); // Output: 褡
JSON:
{"text": "\u8921"} // Value: 褡
Python:
char = '\u8921'
print(char) # Output: 褡
Perl:
my $char = "\x{8921}";
print $char; # Output: 褡
PHP:
$char = "\x{8921}";
echo $char; // Output: 褡
Ruby:
char = "\u{8921}"
puts char # Output: 褡
Rust:
let c = '\u{8921}';
println!("{}", c); // Output: 褡
Go:
char := '\u8921'
fmt.Printf("%c\n", char) // Output: 褡
CSS:
/* CSS content property */
.element::before {
content: "\008921"; /* 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%A1
MD5:
1e37ed1cd0bf35f3a3a98edbd4aa0309
SHA1:
64738f5aadb0eedd401074245dfed9c25927b5ca
Base64:
6KSh