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