C:
char c = '\u524C';
printf("%c\n", c); // Output: 剌
JavaScript:
const char = '\u524C';
console.log(char); // Output: 剌
Java:
char c = '\u524C';
System.out.println(c); // Output: 剌
JSON:
{"text": "\u524C"} // Value: 剌
Python:
char = '\u524C'
print(char) # Output: 剌
Perl:
my $char = "\x{524C}";
print $char; # Output: 剌
PHP:
$char = "\x{524C}";
echo $char; // Output: 剌
Ruby:
char = "\u{524C}"
puts char # Output: 剌
Rust:
let c = '\u{524C}';
println!("{}", c); // Output: 剌
Go:
char := '\u524C'
fmt.Printf("%c\n", char) // Output: 剌
CSS:
/* CSS content property */
.element::before {
content: "\00524C"; /* 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%8C
MD5:
59d72d1c82bd23b664a0b6d40c182f4b
SHA1:
bb5df83c36323c0be94ba811cc77531c3baa7c11
Base64:
5YmM