C:
char c = '\u718A';
printf("%c\n", c); // Output: 熊
JavaScript:
const char = '\u718A';
console.log(char); // Output: 熊
Java:
char c = '\u718A';
System.out.println(c); // Output: 熊
JSON:
{"text": "\u718A"} // Value: 熊
Python:
char = '\u718A'
print(char) # Output: 熊
Perl:
my $char = "\x{718A}";
print $char; # Output: 熊
PHP:
$char = "\x{718A}";
echo $char; // Output: 熊
Ruby:
char = "\u{718A}"
puts char # Output: 熊
Rust:
let c = '\u{718A}';
println!("{}", c); // Output: 熊
Go:
char := '\u718A'
fmt.Printf("%c\n", char) // Output: 熊
CSS:
/* CSS content property */
.element::before {
content: "\00718A"; /* 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%8A
MD5:
8df702f4accfd6930aa10c532eac3ebd
SHA1:
74512a43789a8201ce53190689c56e43eae5d433
Base64:
54aK