C:
char c = '\u719B';
printf("%c\n", c); // Output: 熛
JavaScript:
const char = '\u719B';
console.log(char); // Output: 熛
Java:
char c = '\u719B';
System.out.println(c); // Output: 熛
JSON:
{"text": "\u719B"} // Value: 熛
Python:
char = '\u719B'
print(char) # Output: 熛
Perl:
my $char = "\x{719B}";
print $char; # Output: 熛
PHP:
$char = "\x{719B}";
echo $char; // Output: 熛
Ruby:
char = "\u{719B}"
puts char # Output: 熛
Rust:
let c = '\u{719B}';
println!("{}", c); // Output: 熛
Go:
char := '\u719B'
fmt.Printf("%c\n", char) // Output: 熛
CSS:
/* CSS content property */
.element::before {
content: "\00719B"; /* 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%9B
MD5:
1a69ba6ddec5f9d1d2eac563ebc6e8e3
SHA1:
aaf66e597faa9665d21f5ee785aff05f86a68100
Base64:
54ab