C:
char c = '\u8721';
printf("%c\n", c); // Output: 蜡
JavaScript:
const char = '\u8721';
console.log(char); // Output: 蜡
Java:
char c = '\u8721';
System.out.println(c); // Output: 蜡
JSON:
{"text": "\u8721"} // Value: 蜡
Python:
char = '\u8721'
print(char) # Output: 蜡
Perl:
my $char = "\x{8721}";
print $char; # Output: 蜡
PHP:
$char = "\x{8721}";
echo $char; // Output: 蜡
Ruby:
char = "\u{8721}"
puts char # Output: 蜡
Rust:
let c = '\u{8721}';
println!("{}", c); // Output: 蜡
Go:
char := '\u8721'
fmt.Printf("%c\n", char) // Output: 蜡
CSS:
/* CSS content property */
.element::before {
content: "\008721"; /* 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%A1
MD5:
11ba4c5dc6f20b0def06fc5621983bde
SHA1:
a8231fc8aca7cb5919096989b4ee5da593183df8
Base64:
6Jyh