C:
char c = '\u7A5B';
printf("%c\n", c); // Output: 穛
JavaScript:
const char = '\u7A5B';
console.log(char); // Output: 穛
Java:
char c = '\u7A5B';
System.out.println(c); // Output: 穛
JSON:
{"text": "\u7A5B"} // Value: 穛
Python:
char = '\u7A5B'
print(char) # Output: 穛
Perl:
my $char = "\x{7A5B}";
print $char; # Output: 穛
PHP:
$char = "\x{7A5B}";
echo $char; // Output: 穛
Ruby:
char = "\u{7A5B}"
puts char # Output: 穛
Rust:
let c = '\u{7A5B}';
println!("{}", c); // Output: 穛
Go:
char := '\u7A5B'
fmt.Printf("%c\n", char) // Output: 穛
CSS:
/* CSS content property */
.element::before {
content: "\007A5B"; /* 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%9B
MD5:
a75a8469d4d4e9cd1741bad3f8b60d76
SHA1:
905fdae7a7ac59cd5a7878da4bf81d61b6eb1c65
Base64:
56mb