C:
char c = '\u8910';
printf("%c\n", c); // Output: 褐
JavaScript:
const char = '\u8910';
console.log(char); // Output: 褐
Java:
char c = '\u8910';
System.out.println(c); // Output: 褐
JSON:
{"text": "\u8910"} // Value: 褐
Python:
char = '\u8910'
print(char) # Output: 褐
Perl:
my $char = "\x{8910}";
print $char; # Output: 褐
PHP:
$char = "\x{8910}";
echo $char; // Output: 褐
Ruby:
char = "\u{8910}"
puts char # Output: 褐
Rust:
let c = '\u{8910}';
println!("{}", c); // Output: 褐
Go:
char := '\u8910'
fmt.Printf("%c\n", char) // Output: 褐
CSS:
/* CSS content property */
.element::before {
content: "\008910"; /* 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%90
MD5:
5d667e6431e9cf3e87dc4dc8aefc6a44
SHA1:
09293faad1c72e18ef4b5680f0fe510f8aafa4db
Base64:
6KSQ