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