C:
char c = '\u7509';
printf("%c\n", c); // Output: 甉
JavaScript:
const char = '\u7509';
console.log(char); // Output: 甉
Java:
char c = '\u7509';
System.out.println(c); // Output: 甉
JSON:
{"text": "\u7509"} // Value: 甉
Python:
char = '\u7509'
print(char) # Output: 甉
Perl:
my $char = "\x{7509}";
print $char; # Output: 甉
PHP:
$char = "\x{7509}";
echo $char; // Output: 甉
Ruby:
char = "\u{7509}"
puts char # Output: 甉
Rust:
let c = '\u{7509}';
println!("{}", c); // Output: 甉
Go:
char := '\u7509'
fmt.Printf("%c\n", char) // Output: 甉
CSS:
/* CSS content property */
.element::before {
content: "\007509"; /* 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%89
MD5:
71b6731205fd9eee907d3e1f24ede42a
SHA1:
28becd022fd8200dacdf038949138f054b0f0801
Base64:
55SJ