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