C:
char c = '\u8828';
printf("%c\n", c); // Output: 蠨
JavaScript:
const char = '\u8828';
console.log(char); // Output: 蠨
Java:
char c = '\u8828';
System.out.println(c); // Output: 蠨
JSON:
{"text": "\u8828"} // Value: 蠨
Python:
char = '\u8828'
print(char) # Output: 蠨
Perl:
my $char = "\x{8828}";
print $char; # Output: 蠨
PHP:
$char = "\x{8828}";
echo $char; // Output: 蠨
Ruby:
char = "\u{8828}"
puts char # Output: 蠨
Rust:
let c = '\u{8828}';
println!("{}", c); // Output: 蠨
Go:
char := '\u8828'
fmt.Printf("%c\n", char) // Output: 蠨
CSS:
/* CSS content property */
.element::before {
content: "\008828"; /* 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%A8
MD5:
b52d6082644a05b84adc5c53979c41ad
SHA1:
2b676e9f8c082b02989e20a8466c66538ee742eb
Base64:
6KCo