C:
char c = '\u6973';
printf("%c\n", c); // Output: 楳
JavaScript:
const char = '\u6973';
console.log(char); // Output: 楳
Java:
char c = '\u6973';
System.out.println(c); // Output: 楳
JSON:
{"text": "\u6973"} // Value: 楳
Python:
char = '\u6973'
print(char) # Output: 楳
Perl:
my $char = "\x{6973}";
print $char; # Output: 楳
PHP:
$char = "\x{6973}";
echo $char; // Output: 楳
Ruby:
char = "\u{6973}"
puts char # Output: 楳
Rust:
let c = '\u{6973}';
println!("{}", c); // Output: 楳
Go:
char := '\u6973'
fmt.Printf("%c\n", char) // Output: 楳
CSS:
/* CSS content property */
.element::before {
content: "\006973"; /* 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%B3
MD5:
60a51a664a8010cc36d145c48dd5f424
SHA1:
3397176dd24d93bad19e0369b68d14dc22bf1307
Base64:
5qWz