C:
char c = '\u7527';
printf("%c\n", c); // Output: 甧
JavaScript:
const char = '\u7527';
console.log(char); // Output: 甧
Java:
char c = '\u7527';
System.out.println(c); // Output: 甧
JSON:
{"text": "\u7527"} // Value: 甧
Python:
char = '\u7527'
print(char) # Output: 甧
Perl:
my $char = "\x{7527}";
print $char; # Output: 甧
PHP:
$char = "\x{7527}";
echo $char; // Output: 甧
Ruby:
char = "\u{7527}"
puts char # Output: 甧
Rust:
let c = '\u{7527}';
println!("{}", c); // Output: 甧
Go:
char := '\u7527'
fmt.Printf("%c\n", char) // Output: 甧
CSS:
/* CSS content property */
.element::before {
content: "\007527"; /* 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%A7
MD5:
4417e820bba866215be53baddce06fb1
SHA1:
e3ce76d9f1e7448583d3c5d86c5b7ea288b3f7e1
Base64:
55Sn