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