C:
char c = '\u6968';
printf("%c\n", c); // Output: 楨
JavaScript:
const char = '\u6968';
console.log(char); // Output: 楨
Java:
char c = '\u6968';
System.out.println(c); // Output: 楨
JSON:
{"text": "\u6968"} // Value: 楨
Python:
char = '\u6968'
print(char) # Output: 楨
Perl:
my $char = "\x{6968}";
print $char; # Output: 楨
PHP:
$char = "\x{6968}";
echo $char; // Output: 楨
Ruby:
char = "\u{6968}"
puts char # Output: 楨
Rust:
let c = '\u{6968}';
println!("{}", c); // Output: 楨
Go:
char := '\u6968'
fmt.Printf("%c\n", char) // Output: 楨
CSS:
/* CSS content property */
.element::before {
content: "\006968"; /* 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%A8
MD5:
10e0447d4dcd183c9469729065ff47d8
SHA1:
2b453429013ce895bae1387af563474467767df3
Base64:
5qWo