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