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