C:
char c = '\u7D1F';
printf("%c\n", c); // Output: 紟
JavaScript:
const char = '\u7D1F';
console.log(char); // Output: 紟
Java:
char c = '\u7D1F';
System.out.println(c); // Output: 紟
JSON:
{"text": "\u7D1F"} // Value: 紟
Python:
char = '\u7D1F'
print(char) # Output: 紟
Perl:
my $char = "\x{7D1F}";
print $char; # Output: 紟
PHP:
$char = "\x{7D1F}";
echo $char; // Output: 紟
Ruby:
char = "\u{7D1F}"
puts char # Output: 紟
Rust:
let c = '\u{7D1F}';
println!("{}", c); // Output: 紟
Go:
char := '\u7D1F'
fmt.Printf("%c\n", char) // Output: 紟
CSS:
/* CSS content property */
.element::before {
content: "\007D1F"; /* 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%9F
MD5:
19a71ca89954a0a8dd68f5879f7c54a7
SHA1:
8568a0a947c41f155fdfa77052df0a70c6a5b997
Base64:
57Sf