C:
char c = '\u6949';
printf("%c\n", c); // Output: 楉
JavaScript:
const char = '\u6949';
console.log(char); // Output: 楉
Java:
char c = '\u6949';
System.out.println(c); // Output: 楉
JSON:
{"text": "\u6949"} // Value: 楉
Python:
char = '\u6949'
print(char) # Output: 楉
Perl:
my $char = "\x{6949}";
print $char; # Output: 楉
PHP:
$char = "\x{6949}";
echo $char; // Output: 楉
Ruby:
char = "\u{6949}"
puts char # Output: 楉
Rust:
let c = '\u{6949}';
println!("{}", c); // Output: 楉
Go:
char := '\u6949'
fmt.Printf("%c\n", char) // Output: 楉
CSS:
/* CSS content property */
.element::before {
content: "\006949"; /* 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%89
MD5:
05750a4edde54a28d14a2fbe0993fd15
SHA1:
83f910a28c1b49c46141d545b65d8fea2cd96aef
Base64:
5qWJ