C:
char c = '\u6967';
printf("%c\n", c); // Output: 楧
JavaScript:
const char = '\u6967';
console.log(char); // Output: 楧
Java:
char c = '\u6967';
System.out.println(c); // Output: 楧
JSON:
{"text": "\u6967"} // Value: 楧
Python:
char = '\u6967'
print(char) # Output: 楧
Perl:
my $char = "\x{6967}";
print $char; # Output: 楧
PHP:
$char = "\x{6967}";
echo $char; // Output: 楧
Ruby:
char = "\u{6967}"
puts char # Output: 楧
Rust:
let c = '\u{6967}';
println!("{}", c); // Output: 楧
Go:
char := '\u6967'
fmt.Printf("%c\n", char) // Output: 楧
CSS:
/* CSS content property */
.element::before {
content: "\006967"; /* 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%A7
MD5:
756de7b0fa8268cb49f9d95981b43768
SHA1:
ec42991e9af6a9bf234b4ad0d46af04959ada994
Base64:
5qWn