C:
char c = '\u71AB';
printf("%c\n", c); // Output: 熫
JavaScript:
const char = '\u71AB';
console.log(char); // Output: 熫
Java:
char c = '\u71AB';
System.out.println(c); // Output: 熫
JSON:
{"text": "\u71AB"} // Value: 熫
Python:
char = '\u71AB'
print(char) # Output: 熫
Perl:
my $char = "\x{71AB}";
print $char; # Output: 熫
PHP:
$char = "\x{71AB}";
echo $char; // Output: 熫
Ruby:
char = "\u{71AB}"
puts char # Output: 熫
Rust:
let c = '\u{71AB}';
println!("{}", c); // Output: 熫
Go:
char := '\u71AB'
fmt.Printf("%c\n", char) // Output: 熫
CSS:
/* CSS content property */
.element::before {
content: "\0071AB"; /* 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%86%AB
MD5:
1332af27d29c372a883d0f03c0faea1b
SHA1:
900567bec22a7e6b0b8905d631321cf1a67444cc
Base64:
54ar