C:
char c = '\u8553';
printf("%c\n", c); // Output: 蕓
JavaScript:
const char = '\u8553';
console.log(char); // Output: 蕓
Java:
char c = '\u8553';
System.out.println(c); // Output: 蕓
JSON:
{"text": "\u8553"} // Value: 蕓
Python:
char = '\u8553'
print(char) # Output: 蕓
Perl:
my $char = "\x{8553}";
print $char; # Output: 蕓
PHP:
$char = "\x{8553}";
echo $char; // Output: 蕓
Ruby:
char = "\u{8553}"
puts char # Output: 蕓
Rust:
let c = '\u{8553}';
println!("{}", c); // Output: 蕓
Go:
char := '\u8553'
fmt.Printf("%c\n", char) // Output: 蕓
CSS:
/* CSS content property */
.element::before {
content: "\008553"; /* 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%93
MD5:
a794106352c219dc840fa8a3f1255ee0
SHA1:
5eb6eae38ca404b08afb9be331b3a70244443321
Base64:
6JWT