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