C:
char c = '\u5999';
printf("%c\n", c); // Output: 妙
JavaScript:
const char = '\u5999';
console.log(char); // Output: 妙
Java:
char c = '\u5999';
System.out.println(c); // Output: 妙
JSON:
{"text": "\u5999"} // Value: 妙
Python:
char = '\u5999'
print(char) # Output: 妙
Perl:
my $char = "\x{5999}";
print $char; # Output: 妙
PHP:
$char = "\x{5999}";
echo $char; // Output: 妙
Ruby:
char = "\u{5999}"
puts char # Output: 妙
Rust:
let c = '\u{5999}';
println!("{}", c); // Output: 妙
Go:
char := '\u5999'
fmt.Printf("%c\n", char) // Output: 妙
CSS:
/* CSS content property */
.element::before {
content: "\005999"; /* 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=%E5%A6%99
MD5:
0bc7225cd7d540974a35a6d9c66d2557
SHA1:
05aece4e5914cbb00a45114105dd49ae03bdbcf5
Base64:
5aaZ