C:
char c = '\u8785';
printf("%c\n", c); // Output: 螅
JavaScript:
const char = '\u8785';
console.log(char); // Output: 螅
Java:
char c = '\u8785';
System.out.println(c); // Output: 螅
JSON:
{"text": "\u8785"} // Value: 螅
Python:
char = '\u8785'
print(char) # Output: 螅
Perl:
my $char = "\x{8785}";
print $char; # Output: 螅
PHP:
$char = "\x{8785}";
echo $char; // Output: 螅
Ruby:
char = "\u{8785}"
puts char # Output: 螅
Rust:
let c = '\u{8785}';
println!("{}", c); // Output: 螅
Go:
char := '\u8785'
fmt.Printf("%c\n", char) // Output: 螅
CSS:
/* CSS content property */
.element::before {
content: "\008785"; /* 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%85
MD5:
2468c31a913304a56c1781b085a6a1a0
SHA1:
234eef9df5fd363f8117f396411cb337efea29a3
Base64:
6J6F