C:
char c = '\u8809';
printf("%c\n", c); // Output: 蠉
JavaScript:
const char = '\u8809';
console.log(char); // Output: 蠉
Java:
char c = '\u8809';
System.out.println(c); // Output: 蠉
JSON:
{"text": "\u8809"} // Value: 蠉
Python:
char = '\u8809'
print(char) # Output: 蠉
Perl:
my $char = "\x{8809}";
print $char; # Output: 蠉
PHP:
$char = "\x{8809}";
echo $char; // Output: 蠉
Ruby:
char = "\u{8809}"
puts char # Output: 蠉
Rust:
let c = '\u{8809}';
println!("{}", c); // Output: 蠉
Go:
char := '\u8809'
fmt.Printf("%c\n", char) // Output: 蠉
CSS:
/* CSS content property */
.element::before {
content: "\008809"; /* 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%A0%89
MD5:
23abf6676001bbf36c0d4e578f04c6b1
SHA1:
0276ea2e32aa7d39938e1cf82b47803609fe6ced
Base64:
6KCJ