C:
char c = '\u86E4';
printf("%c\n", c); // Output: 蛤
JavaScript:
const char = '\u86E4';
console.log(char); // Output: 蛤
Java:
char c = '\u86E4';
System.out.println(c); // Output: 蛤
JSON:
{"text": "\u86E4"} // Value: 蛤
Python:
char = '\u86E4'
print(char) # Output: 蛤
Perl:
my $char = "\x{86E4}";
print $char; # Output: 蛤
PHP:
$char = "\x{86E4}";
echo $char; // Output: 蛤
Ruby:
char = "\u{86E4}"
puts char # Output: 蛤
Rust:
let c = '\u{86E4}';
println!("{}", c); // Output: 蛤
Go:
char := '\u86E4'
fmt.Printf("%c\n", char) // Output: 蛤
CSS:
/* CSS content property */
.element::before {
content: "\0086E4"; /* 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%9B%A4
MD5:
282f2f3f9af3c7c643330360423f733c
SHA1:
3c65b7268eaa75cd868b8705a105c83a0aa679e3
Base64:
6Juk