C:
char c = '\u7D19';
printf("%c\n", c); // Output: 紙
JavaScript:
const char = '\u7D19';
console.log(char); // Output: 紙
Java:
char c = '\u7D19';
System.out.println(c); // Output: 紙
JSON:
{"text": "\u7D19"} // Value: 紙
Python:
char = '\u7D19'
print(char) # Output: 紙
Perl:
my $char = "\x{7D19}";
print $char; # Output: 紙
PHP:
$char = "\x{7D19}";
echo $char; // Output: 紙
Ruby:
char = "\u{7D19}"
puts char # Output: 紙
Rust:
let c = '\u{7D19}';
println!("{}", c); // Output: 紙
Go:
char := '\u7D19'
fmt.Printf("%c\n", char) // Output: 紙
CSS:
/* CSS content property */
.element::before {
content: "\007D19"; /* 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=%E7%B4%99
MD5:
b9ebead76005411544b4d7c80e4e09b2
SHA1:
c899fb51e3562d7804466355d240d9311a3f046d
Base64:
57SZ