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