C:
char c = '\u9626';
printf("%c\n", c); // Output: 阦
JavaScript:
const char = '\u9626';
console.log(char); // Output: 阦
Java:
char c = '\u9626';
System.out.println(c); // Output: 阦
JSON:
{"text": "\u9626"} // Value: 阦
Python:
char = '\u9626'
print(char) # Output: 阦
Perl:
my $char = "\x{9626}";
print $char; # Output: 阦
PHP:
$char = "\x{9626}";
echo $char; // Output: 阦
Ruby:
char = "\u{9626}"
puts char # Output: 阦
Rust:
let c = '\u{9626}';
println!("{}", c); // Output: 阦
Go:
char := '\u9626'
fmt.Printf("%c\n", char) // Output: 阦
CSS:
/* CSS content property */
.element::before {
content: "\009626"; /* 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%A6
MD5:
18a6173cd461249216a8f6d5d3653376
SHA1:
1f7ebd5cab71863d21283477aa3bee2d8f2f12a3
Base64:
6Zim