C:
char c = '\u8782';
printf("%c\n", c); // Output: 螂
JavaScript:
const char = '\u8782';
console.log(char); // Output: 螂
Java:
char c = '\u8782';
System.out.println(c); // Output: 螂
JSON:
{"text": "\u8782"} // Value: 螂
Python:
char = '\u8782'
print(char) # Output: 螂
Perl:
my $char = "\x{8782}";
print $char; # Output: 螂
PHP:
$char = "\x{8782}";
echo $char; // Output: 螂
Ruby:
char = "\u{8782}"
puts char # Output: 螂
Rust:
let c = '\u{8782}';
println!("{}", c); // Output: 螂
Go:
char := '\u8782'
fmt.Printf("%c\n", char) // Output: 螂
CSS:
/* CSS content property */
.element::before {
content: "\008782"; /* 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%82
MD5:
c5e9137d42626a7c1c16160d038e7130
SHA1:
793ca69fd695f0e62cc602c686409c6867df370d
Base64:
6J6C