C:
char c = '\u8488';
printf("%c\n", c); // Output: 蒈
JavaScript:
const char = '\u8488';
console.log(char); // Output: 蒈
Java:
char c = '\u8488';
System.out.println(c); // Output: 蒈
JSON:
{"text": "\u8488"} // Value: 蒈
Python:
char = '\u8488'
print(char) # Output: 蒈
Perl:
my $char = "\x{8488}";
print $char; # Output: 蒈
PHP:
$char = "\x{8488}";
echo $char; // Output: 蒈
Ruby:
char = "\u{8488}"
puts char # Output: 蒈
Rust:
let c = '\u{8488}';
println!("{}", c); // Output: 蒈
Go:
char := '\u8488'
fmt.Printf("%c\n", char) // Output: 蒈
CSS:
/* CSS content property */
.element::before {
content: "\008488"; /* 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%88
MD5:
44d9f956c03e9d2837d1496a61dc010f
SHA1:
6654f036d3bd2bd3f7ed0ae84427c14a2221da85
Base64:
6JKI