C:
char c = '\u5226';
printf("%c\n", c); // Output: 刦
JavaScript:
const char = '\u5226';
console.log(char); // Output: 刦
Java:
char c = '\u5226';
System.out.println(c); // Output: 刦
JSON:
{"text": "\u5226"} // Value: 刦
Python:
char = '\u5226'
print(char) # Output: 刦
Perl:
my $char = "\x{5226}";
print $char; # Output: 刦
PHP:
$char = "\x{5226}";
echo $char; // Output: 刦
Ruby:
char = "\u{5226}"
puts char # Output: 刦
Rust:
let c = '\u{5226}';
println!("{}", c); // Output: 刦
Go:
char := '\u5226'
fmt.Printf("%c\n", char) // Output: 刦
CSS:
/* CSS content property */
.element::before {
content: "\005226"; /* 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%88%A6
MD5:
5f5ef6c1b2338c40f8ad72c067f7ab83
SHA1:
f53cb4059d0a7fd2d993133b3b3092bc2d3e662a
Base64:
5Yim