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