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