C:
char c = '\u6959';
printf("%c\n", c); // Output: 楙
JavaScript:
const char = '\u6959';
console.log(char); // Output: 楙
Java:
char c = '\u6959';
System.out.println(c); // Output: 楙
JSON:
{"text": "\u6959"} // Value: 楙
Python:
char = '\u6959'
print(char) # Output: 楙
Perl:
my $char = "\x{6959}";
print $char; # Output: 楙
PHP:
$char = "\x{6959}";
echo $char; // Output: 楙
Ruby:
char = "\u{6959}"
puts char # Output: 楙
Rust:
let c = '\u{6959}';
println!("{}", c); // Output: 楙
Go:
char := '\u6959'
fmt.Printf("%c\n", char) // Output: 楙
CSS:
/* CSS content property */
.element::before {
content: "\006959"; /* 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=%E6%A5%99
MD5:
855c4e10188e9b685bb101e1bcdb1f07
SHA1:
22d04c27152858b583027d121e461545b67ba543
Base64:
5qWZ