C:
char c = '\u8793';
printf("%c\n", c); // Output: 螓
JavaScript:
const char = '\u8793';
console.log(char); // Output: 螓
Java:
char c = '\u8793';
System.out.println(c); // Output: 螓
JSON:
{"text": "\u8793"} // Value: 螓
Python:
char = '\u8793'
print(char) # Output: 螓
Perl:
my $char = "\x{8793}";
print $char; # Output: 螓
PHP:
$char = "\x{8793}";
echo $char; // Output: 螓
Ruby:
char = "\u{8793}"
puts char # Output: 螓
Rust:
let c = '\u{8793}';
println!("{}", c); // Output: 螓
Go:
char := '\u8793'
fmt.Printf("%c\n", char) // Output: 螓
CSS:
/* CSS content property */
.element::before {
content: "\008793"; /* 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%93
MD5:
5f3f0ab0933f11820a0993e43b34f885
SHA1:
8c20d1cd7d82187e37c974c55dd472a3898b5689
Base64:
6J6T