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