C:
char c = '\u8799';
printf("%c\n", c); // Output: 螙
JavaScript:
const char = '\u8799';
console.log(char); // Output: 螙
Java:
char c = '\u8799';
System.out.println(c); // Output: 螙
JSON:
{"text": "\u8799"} // Value: 螙
Python:
char = '\u8799'
print(char) # Output: 螙
Perl:
my $char = "\x{8799}";
print $char; # Output: 螙
PHP:
$char = "\x{8799}";
echo $char; // Output: 螙
Ruby:
char = "\u{8799}"
puts char # Output: 螙
Rust:
let c = '\u{8799}';
println!("{}", c); // Output: 螙
Go:
char := '\u8799'
fmt.Printf("%c\n", char) // Output: 螙
CSS:
/* CSS content property */
.element::before {
content: "\008799"; /* 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=%E8%9E%99
MD5:
ffa6a37964fd7cf9a38980bb49fe154a
SHA1:
3aba50ec0f0aaf05f8c0dbb72ce55f6afc217ca6
Base64:
6J6Z