C:
char c = '\u6966';
printf("%c\n", c); // Output: 楦
JavaScript:
const char = '\u6966';
console.log(char); // Output: 楦
Java:
char c = '\u6966';
System.out.println(c); // Output: 楦
JSON:
{"text": "\u6966"} // Value: 楦
Python:
char = '\u6966'
print(char) # Output: 楦
Perl:
my $char = "\x{6966}";
print $char; # Output: 楦
PHP:
$char = "\x{6966}";
echo $char; // Output: 楦
Ruby:
char = "\u{6966}"
puts char # Output: 楦
Rust:
let c = '\u{6966}';
println!("{}", c); // Output: 楦
Go:
char := '\u6966'
fmt.Printf("%c\n", char) // Output: 楦
CSS:
/* CSS content property */
.element::before {
content: "\006966"; /* 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%A6
MD5:
4dcb65cefdbc2451d3421879c6e16c97
SHA1:
79571c3a6002ae9d88c0f8e9c42b3ae99471f23d
Base64:
5qWm