C:
char c = '\u8486';
printf("%c\n", c); // Output: 蒆
JavaScript:
const char = '\u8486';
console.log(char); // Output: 蒆
Java:
char c = '\u8486';
System.out.println(c); // Output: 蒆
JSON:
{"text": "\u8486"} // Value: 蒆
Python:
char = '\u8486'
print(char) # Output: 蒆
Perl:
my $char = "\x{8486}";
print $char; # Output: 蒆
PHP:
$char = "\x{8486}";
echo $char; // Output: 蒆
Ruby:
char = "\u{8486}"
puts char # Output: 蒆
Rust:
let c = '\u{8486}';
println!("{}", c); // Output: 蒆
Go:
char := '\u8486'
fmt.Printf("%c\n", char) // Output: 蒆
CSS:
/* CSS content property */
.element::before {
content: "\008486"; /* 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%86
MD5:
ba6a538ac3e4ce6db23c4c67b76e1430
SHA1:
dac1caf01b4a3b40967b4724164739662db827ea
Base64:
6JKG