C:
char c = '\u8819';
printf("%c\n", c); // Output: 蠙
JavaScript:
const char = '\u8819';
console.log(char); // Output: 蠙
Java:
char c = '\u8819';
System.out.println(c); // Output: 蠙
JSON:
{"text": "\u8819"} // Value: 蠙
Python:
char = '\u8819'
print(char) # Output: 蠙
Perl:
my $char = "\x{8819}";
print $char; # Output: 蠙
PHP:
$char = "\x{8819}";
echo $char; // Output: 蠙
Ruby:
char = "\u{8819}"
puts char # Output: 蠙
Rust:
let c = '\u{8819}';
println!("{}", c); // Output: 蠙
Go:
char := '\u8819'
fmt.Printf("%c\n", char) // Output: 蠙
CSS:
/* CSS content property */
.element::before {
content: "\008819"; /* 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%99
MD5:
6e4a59b655e9bb0e58a69de226c22332
SHA1:
da0ceb801158c573567248cfa18601ae7af4d9a8
Base64:
6KCZ