C:
char c = '\u8722';
printf("%c\n", c); // Output: 蜢
JavaScript:
const char = '\u8722';
console.log(char); // Output: 蜢
Java:
char c = '\u8722';
System.out.println(c); // Output: 蜢
JSON:
{"text": "\u8722"} // Value: 蜢
Python:
char = '\u8722'
print(char) # Output: 蜢
Perl:
my $char = "\x{8722}";
print $char; # Output: 蜢
PHP:
$char = "\x{8722}";
echo $char; // Output: 蜢
Ruby:
char = "\u{8722}"
puts char # Output: 蜢
Rust:
let c = '\u{8722}';
println!("{}", c); // Output: 蜢
Go:
char := '\u8722'
fmt.Printf("%c\n", char) // Output: 蜢
CSS:
/* CSS content property */
.element::before {
content: "\008722"; /* 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%A2
MD5:
bb54807ed07c904e9f1e0c10ce035573
SHA1:
eaed3b8299d407853153283e7b74c17cd6a91cad
Base64:
6Jyi