C:
char c = '\u8563';
printf("%c\n", c); // Output: 蕣
JavaScript:
const char = '\u8563';
console.log(char); // Output: 蕣
Java:
char c = '\u8563';
System.out.println(c); // Output: 蕣
JSON:
{"text": "\u8563"} // Value: 蕣
Python:
char = '\u8563'
print(char) # Output: 蕣
Perl:
my $char = "\x{8563}";
print $char; # Output: 蕣
PHP:
$char = "\x{8563}";
echo $char; // Output: 蕣
Ruby:
char = "\u{8563}"
puts char # Output: 蕣
Rust:
let c = '\u{8563}';
println!("{}", c); // Output: 蕣
Go:
char := '\u8563'
fmt.Printf("%c\n", char) // Output: 蕣
CSS:
/* CSS content property */
.element::before {
content: "\008563"; /* 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%A3
MD5:
b8fb52277bf7da7ade5dee6c907d1bee
SHA1:
68208b1079f63fad41b6a2ebf9be129203ca5455
Base64:
6JWj