C:
char c = '\u5284';
printf("%c\n", c); // Output: 劄
JavaScript:
const char = '\u5284';
console.log(char); // Output: 劄
Java:
char c = '\u5284';
System.out.println(c); // Output: 劄
JSON:
{"text": "\u5284"} // Value: 劄
Python:
char = '\u5284'
print(char) # Output: 劄
Perl:
my $char = "\x{5284}";
print $char; # Output: 劄
PHP:
$char = "\x{5284}";
echo $char; // Output: 劄
Ruby:
char = "\u{5284}"
puts char # Output: 劄
Rust:
let c = '\u{5284}';
println!("{}", c); // Output: 劄
Go:
char := '\u5284'
fmt.Printf("%c\n", char) // Output: 劄
CSS:
/* CSS content property */
.element::before {
content: "\005284"; /* 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%8A%84
MD5:
807c18e87ea806b081d9cf6d9098e7bb
SHA1:
5ac030ff48f81bbab5c13ce01eb78f5c1a4cd742
Base64:
5YqE