C:
char c = '\u8565';
printf("%c\n", c); // Output: 蕥
JavaScript:
const char = '\u8565';
console.log(char); // Output: 蕥
Java:
char c = '\u8565';
System.out.println(c); // Output: 蕥
JSON:
{"text": "\u8565"} // Value: 蕥
Python:
char = '\u8565'
print(char) # Output: 蕥
Perl:
my $char = "\x{8565}";
print $char; # Output: 蕥
PHP:
$char = "\x{8565}";
echo $char; // Output: 蕥
Ruby:
char = "\u{8565}"
puts char # Output: 蕥
Rust:
let c = '\u{8565}';
println!("{}", c); // Output: 蕥
Go:
char := '\u8565'
fmt.Printf("%c\n", char) // Output: 蕥
CSS:
/* CSS content property */
.element::before {
content: "\008565"; /* 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%A5
MD5:
13f9ab8c0bd7630af40716fbb74e76c1
SHA1:
3da3d52f6d56a41a3b176fd349762a8baa7ee93a
Base64:
6JWl