C:
char c = '\u5221';
printf("%c\n", c); // Output: 刡
JavaScript:
const char = '\u5221';
console.log(char); // Output: 刡
Java:
char c = '\u5221';
System.out.println(c); // Output: 刡
JSON:
{"text": "\u5221"} // Value: 刡
Python:
char = '\u5221'
print(char) # Output: 刡
Perl:
my $char = "\x{5221}";
print $char; # Output: 刡
PHP:
$char = "\x{5221}";
echo $char; // Output: 刡
Ruby:
char = "\u{5221}"
puts char # Output: 刡
Rust:
let c = '\u{5221}';
println!("{}", c); // Output: 刡
Go:
char := '\u5221'
fmt.Printf("%c\n", char) // Output: 刡
CSS:
/* CSS content property */
.element::before {
content: "\005221"; /* 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=%E5%88%A1
MD5:
f705e52aeadb39e922537f91a121e3b9
SHA1:
4fa2300604d1ca28d5b56fe080b70760b137d528
Base64:
5Yih