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