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