C:
char c = '\u8787';
printf("%c\n", c); // Output: 螇
JavaScript:
const char = '\u8787';
console.log(char); // Output: 螇
Java:
char c = '\u8787';
System.out.println(c); // Output: 螇
JSON:
{"text": "\u8787"} // Value: 螇
Python:
char = '\u8787'
print(char) # Output: 螇
Perl:
my $char = "\x{8787}";
print $char; # Output: 螇
PHP:
$char = "\x{8787}";
echo $char; // Output: 螇
Ruby:
char = "\u{8787}"
puts char # Output: 螇
Rust:
let c = '\u{8787}';
println!("{}", c); // Output: 螇
Go:
char := '\u8787'
fmt.Printf("%c\n", char) // Output: 螇
CSS:
/* CSS content property */
.element::before {
content: "\008787"; /* 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%87
MD5:
e0a7d6fce698da1e28dc9eea42a41650
SHA1:
982a3d5a4007eceafbbf7fe46d7c890c5d04c30f
Base64:
6J6H