C:
char c = '\u5252';
printf("%c\n", c); // Output: 剒
JavaScript:
const char = '\u5252';
console.log(char); // Output: 剒
Java:
char c = '\u5252';
System.out.println(c); // Output: 剒
JSON:
{"text": "\u5252"} // Value: 剒
Python:
char = '\u5252'
print(char) # Output: 剒
Perl:
my $char = "\x{5252}";
print $char; # Output: 剒
PHP:
$char = "\x{5252}";
echo $char; // Output: 剒
Ruby:
char = "\u{5252}"
puts char # Output: 剒
Rust:
let c = '\u{5252}';
println!("{}", c); // Output: 剒
Go:
char := '\u5252'
fmt.Printf("%c\n", char) // Output: 剒
CSS:
/* CSS content property */
.element::before {
content: "\005252"; /* 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%89%92
MD5:
100a3350d72c83de0602747b4e276781
SHA1:
ab2ad08ecc3043939983740401ae3473db3eeade
Base64:
5YmS