C:
char c = '\u8821';
printf("%c\n", c); // Output: 蠡
JavaScript:
const char = '\u8821';
console.log(char); // Output: 蠡
Java:
char c = '\u8821';
System.out.println(c); // Output: 蠡
JSON:
{"text": "\u8821"} // Value: 蠡
Python:
char = '\u8821'
print(char) # Output: 蠡
Perl:
my $char = "\x{8821}";
print $char; # Output: 蠡
PHP:
$char = "\x{8821}";
echo $char; // Output: 蠡
Ruby:
char = "\u{8821}"
puts char # Output: 蠡
Rust:
let c = '\u{8821}';
println!("{}", c); // Output: 蠡
Go:
char := '\u8821'
fmt.Printf("%c\n", char) // Output: 蠡
CSS:
/* CSS content property */
.element::before {
content: "\008821"; /* 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%A1
MD5:
33617c0b789d64d60edd3aa7b2a14d9c
SHA1:
55864c20a3c205f6663d6ac4fedf25447830a15b
Base64:
6KCh