C:
char c = '\u7506';
printf("%c\n", c); // Output: 甆
JavaScript:
const char = '\u7506';
console.log(char); // Output: 甆
Java:
char c = '\u7506';
System.out.println(c); // Output: 甆
JSON:
{"text": "\u7506"} // Value: 甆
Python:
char = '\u7506'
print(char) # Output: 甆
Perl:
my $char = "\x{7506}";
print $char; # Output: 甆
PHP:
$char = "\x{7506}";
echo $char; // Output: 甆
Ruby:
char = "\u{7506}"
puts char # Output: 甆
Rust:
let c = '\u{7506}';
println!("{}", c); // Output: 甆
Go:
char := '\u7506'
fmt.Printf("%c\n", char) // Output: 甆
CSS:
/* CSS content property */
.element::before {
content: "\007506"; /* 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%86
MD5:
5831688577ea32815bc6945ce3fb8dee
SHA1:
c0da78b7fcfe269b3dfd0d71f748964e724a5fee
Base64:
55SG