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