C:
char c = '\u8566';
printf("%c\n", c); // Output: 蕦
JavaScript:
const char = '\u8566';
console.log(char); // Output: 蕦
Java:
char c = '\u8566';
System.out.println(c); // Output: 蕦
JSON:
{"text": "\u8566"} // Value: 蕦
Python:
char = '\u8566'
print(char) # Output: 蕦
Perl:
my $char = "\x{8566}";
print $char; # Output: 蕦
PHP:
$char = "\x{8566}";
echo $char; // Output: 蕦
Ruby:
char = "\u{8566}"
puts char # Output: 蕦
Rust:
let c = '\u{8566}';
println!("{}", c); // Output: 蕦
Go:
char := '\u8566'
fmt.Printf("%c\n", char) // Output: 蕦
CSS:
/* CSS content property */
.element::before {
content: "\008566"; /* 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%A6
MD5:
365ad3ea382b3d4e88865d514d457aa7
SHA1:
7f52b01c7daa7e66f7c00b75d8e85cf2cc2d0e51
Base64:
6JWm