C:
char c = '\u5254';
printf("%c\n", c); // Output: 剔
JavaScript:
const char = '\u5254';
console.log(char); // Output: 剔
Java:
char c = '\u5254';
System.out.println(c); // Output: 剔
JSON:
{"text": "\u5254"} // Value: 剔
Python:
char = '\u5254'
print(char) # Output: 剔
Perl:
my $char = "\x{5254}";
print $char; # Output: 剔
PHP:
$char = "\x{5254}";
echo $char; // Output: 剔
Ruby:
char = "\u{5254}"
puts char # Output: 剔
Rust:
let c = '\u{5254}';
println!("{}", c); // Output: 剔
Go:
char := '\u5254'
fmt.Printf("%c\n", char) // Output: 剔
CSS:
/* CSS content property */
.element::before {
content: "\005254"; /* 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%94
MD5:
2659af1ccbfa7caa2e2fac6578fae8d2
SHA1:
c04a991817600174a48042a4739841a4b9d2d58f
Base64:
5YmU