C:
char c = '\u8830';
printf("%c\n", c); // Output: 蠰
JavaScript:
const char = '\u8830';
console.log(char); // Output: 蠰
Java:
char c = '\u8830';
System.out.println(c); // Output: 蠰
JSON:
{"text": "\u8830"} // Value: 蠰
Python:
char = '\u8830'
print(char) # Output: 蠰
Perl:
my $char = "\x{8830}";
print $char; # Output: 蠰
PHP:
$char = "\x{8830}";
echo $char; // Output: 蠰
Ruby:
char = "\u{8830}"
puts char # Output: 蠰
Rust:
let c = '\u{8830}';
println!("{}", c); // Output: 蠰
Go:
char := '\u8830'
fmt.Printf("%c\n", char) // Output: 蠰
CSS:
/* CSS content property */
.element::before {
content: "\008830"; /* 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%B0
MD5:
97cd1483b4a60be5be1c830dc11544b9
SHA1:
cef7d88c2c08b1f91667d2f8b60c0f92946db191
Base64:
6KCw