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