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