C:
char c = '\u8545';
printf("%c\n", c); // Output: 蕅
JavaScript:
const char = '\u8545';
console.log(char); // Output: 蕅
Java:
char c = '\u8545';
System.out.println(c); // Output: 蕅
JSON:
{"text": "\u8545"} // Value: 蕅
Python:
char = '\u8545'
print(char) # Output: 蕅
Perl:
my $char = "\x{8545}";
print $char; # Output: 蕅
PHP:
$char = "\x{8545}";
echo $char; // Output: 蕅
Ruby:
char = "\u{8545}"
puts char # Output: 蕅
Rust:
let c = '\u{8545}';
println!("{}", c); // Output: 蕅
Go:
char := '\u8545'
fmt.Printf("%c\n", char) // Output: 蕅
CSS:
/* CSS content property */
.element::before {
content: "\008545"; /* 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%85
MD5:
05030087d2a2c82d1afffdc49c6e20a8
SHA1:
d716f2ce1603c14954d27a1e21bd00913a018e2a
Base64:
6JWF