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