C:
char c = '\u8708';
printf("%c\n", c); // Output: 蜈
JavaScript:
const char = '\u8708';
console.log(char); // Output: 蜈
Java:
char c = '\u8708';
System.out.println(c); // Output: 蜈
JSON:
{"text": "\u8708"} // Value: 蜈
Python:
char = '\u8708'
print(char) # Output: 蜈
Perl:
my $char = "\x{8708}";
print $char; # Output: 蜈
PHP:
$char = "\x{8708}";
echo $char; // Output: 蜈
Ruby:
char = "\u{8708}"
puts char # Output: 蜈
Rust:
let c = '\u{8708}';
println!("{}", c); // Output: 蜈
Go:
char := '\u8708'
fmt.Printf("%c\n", char) // Output: 蜈
CSS:
/* CSS content property */
.element::before {
content: "\008708"; /* 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%88
MD5:
876e4989124953b4e7c88b2aa485a13f
SHA1:
0d7187f09536cd223a652f5cd72199567de792b8
Base64:
6JyI