C:
char c = '\u8489';
printf("%c\n", c); // Output: 蒉
JavaScript:
const char = '\u8489';
console.log(char); // Output: 蒉
Java:
char c = '\u8489';
System.out.println(c); // Output: 蒉
JSON:
{"text": "\u8489"} // Value: 蒉
Python:
char = '\u8489'
print(char) # Output: 蒉
Perl:
my $char = "\x{8489}";
print $char; # Output: 蒉
PHP:
$char = "\x{8489}";
echo $char; // Output: 蒉
Ruby:
char = "\u{8489}"
puts char # Output: 蒉
Rust:
let c = '\u{8489}';
println!("{}", c); // Output: 蒉
Go:
char := '\u8489'
fmt.Printf("%c\n", char) // Output: 蒉
CSS:
/* CSS content property */
.element::before {
content: "\008489"; /* 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%92%89
MD5:
244f9c50bef10cc3ee16d01312f5d741
SHA1:
3ba70bec7f96e0c475802b6f8822ea98f05ccacd
Base64:
6JKJ