C:
char c = '\u6948';
printf("%c\n", c); // Output: 楈
JavaScript:
const char = '\u6948';
console.log(char); // Output: 楈
Java:
char c = '\u6948';
System.out.println(c); // Output: 楈
JSON:
{"text": "\u6948"} // Value: 楈
Python:
char = '\u6948'
print(char) # Output: 楈
Perl:
my $char = "\x{6948}";
print $char; # Output: 楈
PHP:
$char = "\x{6948}";
echo $char; // Output: 楈
Ruby:
char = "\u{6948}"
puts char # Output: 楈
Rust:
let c = '\u{6948}';
println!("{}", c); // Output: 楈
Go:
char := '\u6948'
fmt.Printf("%c\n", char) // Output: 楈
CSS:
/* CSS content property */
.element::before {
content: "\006948"; /* 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%88
MD5:
81fee88d9236df69730e7c1bae587e7d
SHA1:
e568c984fc8a734a66fedf978c8dbd708db2bf7b
Base64:
5qWI