C:
char c = '\u7EAE';
printf("%c\n", c); // Output: 纮
JavaScript:
const char = '\u7EAE';
console.log(char); // Output: 纮
Java:
char c = '\u7EAE';
System.out.println(c); // Output: 纮
JSON:
{"text": "\u7EAE"} // Value: 纮
Python:
char = '\u7EAE'
print(char) # Output: 纮
Perl:
my $char = "\x{7EAE}";
print $char; # Output: 纮
PHP:
$char = "\x{7EAE}";
echo $char; // Output: 纮
Ruby:
char = "\u{7EAE}"
puts char # Output: 纮
Rust:
let c = '\u{7EAE}';
println!("{}", c); // Output: 纮
Go:
char := '\u7EAE'
fmt.Printf("%c\n", char) // Output: 纮
CSS:
/* CSS content property */
.element::before {
content: "\007EAE"; /* 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%AE
MD5:
680b09cc5f23791c848dfd5d8aa02885
SHA1:
156d633e5f0b80432319ae688f560f453009678f
Base64:
57qu