C:
char c = '\u8909';
printf("%c\n", c); // Output: 褉
JavaScript:
const char = '\u8909';
console.log(char); // Output: 褉
Java:
char c = '\u8909';
System.out.println(c); // Output: 褉
JSON:
{"text": "\u8909"} // Value: 褉
Python:
char = '\u8909'
print(char) # Output: 褉
Perl:
my $char = "\x{8909}";
print $char; # Output: 褉
PHP:
$char = "\x{8909}";
echo $char; // Output: 褉
Ruby:
char = "\u{8909}"
puts char # Output: 褉
Rust:
let c = '\u{8909}';
println!("{}", c); // Output: 褉
Go:
char := '\u8909'
fmt.Printf("%c\n", char) // Output: 褉
CSS:
/* CSS content property */
.element::before {
content: "\008909"; /* 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%89
MD5:
2de93fe0ff957650b20514a5f6cccb88
SHA1:
7daa26b6c4cb41f7556d06fa54427ac4fb2ddf97
Base64:
6KSJ