C:
char c = '\u9886';
printf("%c\n", c); // Output: 领
JavaScript:
const char = '\u9886';
console.log(char); // Output: 领
Java:
char c = '\u9886';
System.out.println(c); // Output: 领
JSON:
{"text": "\u9886"} // Value: 领
Python:
char = '\u9886'
print(char) # Output: 领
Perl:
my $char = "\x{9886}";
print $char; # Output: 领
PHP:
$char = "\x{9886}";
echo $char; // Output: 领
Ruby:
char = "\u{9886}"
puts char # Output: 领
Rust:
let c = '\u{9886}';
println!("{}", c); // Output: 领
Go:
char := '\u9886'
fmt.Printf("%c\n", char) // Output: 领
CSS:
/* CSS content property */
.element::before {
content: "\009886"; /* 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%A2%86
MD5:
987dc5d5ebf2464ac0073e5b36f44e94
SHA1:
1eab503a038f0456508d40650470dbe31833afe6
Base64:
6aKG