C:
char c = '\u6942';
printf("%c\n", c); // Output: 楂
JavaScript:
const char = '\u6942';
console.log(char); // Output: 楂
Java:
char c = '\u6942';
System.out.println(c); // Output: 楂
JSON:
{"text": "\u6942"} // Value: 楂
Python:
char = '\u6942'
print(char) # Output: 楂
Perl:
my $char = "\x{6942}";
print $char; # Output: 楂
PHP:
$char = "\x{6942}";
echo $char; // Output: 楂
Ruby:
char = "\u{6942}"
puts char # Output: 楂
Rust:
let c = '\u{6942}';
println!("{}", c); // Output: 楂
Go:
char := '\u6942'
fmt.Printf("%c\n", char) // Output: 楂
CSS:
/* CSS content property */
.element::before {
content: "\006942"; /* 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%82
MD5:
dda2c91330371e70164e6fbc0d660539
SHA1:
5a3a773f826cf650b29d0b46191eed359b190a5b
Base64:
5qWC