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