C:
char c = '\u5222';
printf("%c\n", c); // Output: 刢
JavaScript:
const char = '\u5222';
console.log(char); // Output: 刢
Java:
char c = '\u5222';
System.out.println(c); // Output: 刢
JSON:
{"text": "\u5222"} // Value: 刢
Python:
char = '\u5222'
print(char) # Output: 刢
Perl:
my $char = "\x{5222}";
print $char; # Output: 刢
PHP:
$char = "\x{5222}";
echo $char; // Output: 刢
Ruby:
char = "\u{5222}"
puts char # Output: 刢
Rust:
let c = '\u{5222}';
println!("{}", c); // Output: 刢
Go:
char := '\u5222'
fmt.Printf("%c\n", char) // Output: 刢
CSS:
/* CSS content property */
.element::before {
content: "\005222"; /* 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%A2
MD5:
c48f4b9e9ce115ce1314571be22b099f
SHA1:
570ffd23aaa044ddf7020d66a7cd47a2b014e7bc
Base64:
5Yii