C:
char c = '\u878B';
printf("%c\n", c); // Output: 螋
JavaScript:
const char = '\u878B';
console.log(char); // Output: 螋
Java:
char c = '\u878B';
System.out.println(c); // Output: 螋
JSON:
{"text": "\u878B"} // Value: 螋
Python:
char = '\u878B'
print(char) # Output: 螋
Perl:
my $char = "\x{878B}";
print $char; # Output: 螋
PHP:
$char = "\x{878B}";
echo $char; // Output: 螋
Ruby:
char = "\u{878B}"
puts char # Output: 螋
Rust:
let c = '\u{878B}';
println!("{}", c); // Output: 螋
Go:
char := '\u878B'
fmt.Printf("%c\n", char) // Output: 螋
CSS:
/* CSS content property */
.element::before {
content: "\00878B"; /* 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%8B
MD5:
2c65be8f091b11214c22a2d6c2903b16
SHA1:
a3063c80b59f7884cef1c73f8f21a967f57f65ec
Base64:
6J6L