C:
char c = '\u8798';
printf("%c\n", c); // Output: 螘
JavaScript:
const char = '\u8798';
console.log(char); // Output: 螘
Java:
char c = '\u8798';
System.out.println(c); // Output: 螘
JSON:
{"text": "\u8798"} // Value: 螘
Python:
char = '\u8798'
print(char) # Output: 螘
Perl:
my $char = "\x{8798}";
print $char; # Output: 螘
PHP:
$char = "\x{8798}";
echo $char; // Output: 螘
Ruby:
char = "\u{8798}"
puts char # Output: 螘
Rust:
let c = '\u{8798}';
println!("{}", c); // Output: 螘
Go:
char := '\u8798'
fmt.Printf("%c\n", char) // Output: 螘
CSS:
/* CSS content property */
.element::before {
content: "\008798"; /* 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%98
MD5:
2e401ab06a399f07323b88e8fb0b8fda
SHA1:
03f3672dfa2bcc930a92e57de7902c15d99027df
Base64:
6J6Y