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