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