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