C:
char c = '\u7E92';
printf("%c\n", c); // Output: 纒
JavaScript:
const char = '\u7E92';
console.log(char); // Output: 纒
Java:
char c = '\u7E92';
System.out.println(c); // Output: 纒
JSON:
{"text": "\u7E92"} // Value: 纒
Python:
char = '\u7E92'
print(char) # Output: 纒
Perl:
my $char = "\x{7E92}";
print $char; # Output: 纒
PHP:
$char = "\x{7E92}";
echo $char; // Output: 纒
Ruby:
char = "\u{7E92}"
puts char # Output: 纒
Rust:
let c = '\u{7E92}';
println!("{}", c); // Output: 纒
Go:
char := '\u7E92'
fmt.Printf("%c\n", char) // Output: 纒
CSS:
/* CSS content property */
.element::before {
content: "\007E92"; /* 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%BA%92
MD5:
a53b293f500732902440d993e65dbcc0
SHA1:
80076c2f6b26e624bb8f0a2d9d1993c16b189a2b
Base64:
57qS