C:
char c = '\u8795';
printf("%c\n", c); // Output: 螕
JavaScript:
const char = '\u8795';
console.log(char); // Output: 螕
Java:
char c = '\u8795';
System.out.println(c); // Output: 螕
JSON:
{"text": "\u8795"} // Value: 螕
Python:
char = '\u8795'
print(char) # Output: 螕
Perl:
my $char = "\x{8795}";
print $char; # Output: 螕
PHP:
$char = "\x{8795}";
echo $char; // Output: 螕
Ruby:
char = "\u{8795}"
puts char # Output: 螕
Rust:
let c = '\u{8795}';
println!("{}", c); // Output: 螕
Go:
char := '\u8795'
fmt.Printf("%c\n", char) // Output: 螕
CSS:
/* CSS content property */
.element::before {
content: "\008795"; /* 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%95
MD5:
b2f28adc953839d7b6291a6e4fb8c8af
SHA1:
b9a48c705130a621713e7784315e4c62122fe997
Base64:
6J6V