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