C:
char c = '\u8705';
printf("%c\n", c); // Output: 蜅
JavaScript:
const char = '\u8705';
console.log(char); // Output: 蜅
Java:
char c = '\u8705';
System.out.println(c); // Output: 蜅
JSON:
{"text": "\u8705"} // Value: 蜅
Python:
char = '\u8705'
print(char) # Output: 蜅
Perl:
my $char = "\x{8705}";
print $char; # Output: 蜅
PHP:
$char = "\x{8705}";
echo $char; // Output: 蜅
Ruby:
char = "\u{8705}"
puts char # Output: 蜅
Rust:
let c = '\u{8705}';
println!("{}", c); // Output: 蜅
Go:
char := '\u8705'
fmt.Printf("%c\n", char) // Output: 蜅
CSS:
/* CSS content property */
.element::before {
content: "\008705"; /* 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%9C%85
MD5:
5077205897a508c1643b002bd62d4110
SHA1:
853f7de03a4137221cd761e941b825d293a3d38a
Base64:
6JyF