C:
char c = '\u8902';
printf("%c\n", c); // Output: 褂
JavaScript:
const char = '\u8902';
console.log(char); // Output: 褂
Java:
char c = '\u8902';
System.out.println(c); // Output: 褂
JSON:
{"text": "\u8902"} // Value: 褂
Python:
char = '\u8902'
print(char) # Output: 褂
Perl:
my $char = "\x{8902}";
print $char; # Output: 褂
PHP:
$char = "\x{8902}";
echo $char; // Output: 褂
Ruby:
char = "\u{8902}"
puts char # Output: 褂
Rust:
let c = '\u{8902}';
println!("{}", c); // Output: 褂
Go:
char := '\u8902'
fmt.Printf("%c\n", char) // Output: 褂
CSS:
/* CSS content property */
.element::before {
content: "\008902"; /* 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%82
MD5:
15ef4376d06444ca5652beecc7afb649
SHA1:
3a2cc9f81602e84cafe92f06c099bc79b5d450cb
Base64:
6KSC