C:
char c = '\u7516';
printf("%c\n", c); // Output: 甖
JavaScript:
const char = '\u7516';
console.log(char); // Output: 甖
Java:
char c = '\u7516';
System.out.println(c); // Output: 甖
JSON:
{"text": "\u7516"} // Value: 甖
Python:
char = '\u7516'
print(char) # Output: 甖
Perl:
my $char = "\x{7516}";
print $char; # Output: 甖
PHP:
$char = "\x{7516}";
echo $char; // Output: 甖
Ruby:
char = "\u{7516}"
puts char # Output: 甖
Rust:
let c = '\u{7516}';
println!("{}", c); // Output: 甖
Go:
char := '\u7516'
fmt.Printf("%c\n", char) // Output: 甖
CSS:
/* CSS content property */
.element::before {
content: "\007516"; /* 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=%E7%94%96
MD5:
6d95dfac1d42dffcecacabb44280c52d
SHA1:
07aeca249eea5785a9900fbc89e9f6d352857ff7
Base64:
55SW