C:
char c = '\u8824';
printf("%c\n", c); // Output: 蠤
JavaScript:
const char = '\u8824';
console.log(char); // Output: 蠤
Java:
char c = '\u8824';
System.out.println(c); // Output: 蠤
JSON:
{"text": "\u8824"} // Value: 蠤
Python:
char = '\u8824'
print(char) # Output: 蠤
Perl:
my $char = "\x{8824}";
print $char; # Output: 蠤
PHP:
$char = "\x{8824}";
echo $char; // Output: 蠤
Ruby:
char = "\u{8824}"
puts char # Output: 蠤
Rust:
let c = '\u{8824}';
println!("{}", c); // Output: 蠤
Go:
char := '\u8824'
fmt.Printf("%c\n", char) // Output: 蠤
CSS:
/* CSS content property */
.element::before {
content: "\008824"; /* 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%A4
MD5:
dd0fe762e4efa78bd71915300422763d
SHA1:
03dbdaebf3be54f300a7fb12e88e663450d84a78
Base64:
6KCk