C:
char c = '\u6945';
printf("%c\n", c); // Output: 楅
JavaScript:
const char = '\u6945';
console.log(char); // Output: 楅
Java:
char c = '\u6945';
System.out.println(c); // Output: 楅
JSON:
{"text": "\u6945"} // Value: 楅
Python:
char = '\u6945'
print(char) # Output: 楅
Perl:
my $char = "\x{6945}";
print $char; # Output: 楅
PHP:
$char = "\x{6945}";
echo $char; // Output: 楅
Ruby:
char = "\u{6945}"
puts char # Output: 楅
Rust:
let c = '\u{6945}';
println!("{}", c); // Output: 楅
Go:
char := '\u6945'
fmt.Printf("%c\n", char) // Output: 楅
CSS:
/* CSS content property */
.element::before {
content: "\006945"; /* 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%85
MD5:
4898fde08fd275147dbb5b8617a78127
SHA1:
e71726dcb0c2b2f2e70a35adc256bbdd11b81d6a
Base64:
5qWF