C:
char c = '\u9622';
printf("%c\n", c); // Output: 阢
JavaScript:
const char = '\u9622';
console.log(char); // Output: 阢
Java:
char c = '\u9622';
System.out.println(c); // Output: 阢
JSON:
{"text": "\u9622"} // Value: 阢
Python:
char = '\u9622'
print(char) # Output: 阢
Perl:
my $char = "\x{9622}";
print $char; # Output: 阢
PHP:
$char = "\x{9622}";
echo $char; // Output: 阢
Ruby:
char = "\u{9622}"
puts char # Output: 阢
Rust:
let c = '\u{9622}';
println!("{}", c); // Output: 阢
Go:
char := '\u9622'
fmt.Printf("%c\n", char) // Output: 阢
CSS:
/* CSS content property */
.element::before {
content: "\009622"; /* 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=%E9%98%A2
MD5:
d82a6ef8b132d3d6480d75603076c4c8
SHA1:
6f92bdc49afd228ca9d9801253d681c80b378fc7
Base64:
6Zii