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