C:
char c = '\u86D6';
printf("%c\n", c); // Output: 蛖
JavaScript:
const char = '\u86D6';
console.log(char); // Output: 蛖
Java:
char c = '\u86D6';
System.out.println(c); // Output: 蛖
JSON:
{"text": "\u86D6"} // Value: 蛖
Python:
char = '\u86D6'
print(char) # Output: 蛖
Perl:
my $char = "\x{86D6}";
print $char; # Output: 蛖
PHP:
$char = "\x{86D6}";
echo $char; // Output: 蛖
Ruby:
char = "\u{86D6}"
puts char # Output: 蛖
Rust:
let c = '\u{86D6}';
println!("{}", c); // Output: 蛖
Go:
char := '\u86D6'
fmt.Printf("%c\n", char) // Output: 蛖
CSS:
/* CSS content property */
.element::before {
content: "\0086D6"; /* 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%96
MD5:
168577e928d77e633ef1c68b6ab8cd11
SHA1:
7aeb5938b6c436d740cc1c13afde86bc0375a400
Base64:
6JuW