C:
char c = '\u7505';
printf("%c\n", c); // Output: 甅
JavaScript:
const char = '\u7505';
console.log(char); // Output: 甅
Java:
char c = '\u7505';
System.out.println(c); // Output: 甅
JSON:
{"text": "\u7505"} // Value: 甅
Python:
char = '\u7505'
print(char) # Output: 甅
Perl:
my $char = "\x{7505}";
print $char; # Output: 甅
PHP:
$char = "\x{7505}";
echo $char; // Output: 甅
Ruby:
char = "\u{7505}"
puts char # Output: 甅
Rust:
let c = '\u{7505}';
println!("{}", c); // Output: 甅
Go:
char := '\u7505'
fmt.Printf("%c\n", char) // Output: 甅
CSS:
/* CSS content property */
.element::before {
content: "\007505"; /* 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%85
MD5:
1eca6e52701c381b0566c543c84c3d09
SHA1:
8049c4983ceb2f2d0d81670fbddea49767e4fa55
Base64:
55SF