C:
char c = '\u7524';
printf("%c\n", c); // Output: 甤
JavaScript:
const char = '\u7524';
console.log(char); // Output: 甤
Java:
char c = '\u7524';
System.out.println(c); // Output: 甤
JSON:
{"text": "\u7524"} // Value: 甤
Python:
char = '\u7524'
print(char) # Output: 甤
Perl:
my $char = "\x{7524}";
print $char; # Output: 甤
PHP:
$char = "\x{7524}";
echo $char; // Output: 甤
Ruby:
char = "\u{7524}"
puts char # Output: 甤
Rust:
let c = '\u{7524}';
println!("{}", c); // Output: 甤
Go:
char := '\u7524'
fmt.Printf("%c\n", char) // Output: 甤
CSS:
/* CSS content property */
.element::before {
content: "\007524"; /* 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%A4
MD5:
fe361446ed7667d4832967ebfc617eee
SHA1:
50c39c2828e88c35f5c08e5559fc933578a3748d
Base64:
55Sk