C:
char c = '\u8B21';
printf("%c\n", c); // Output: 謡
JavaScript:
const char = '\u8B21';
console.log(char); // Output: 謡
Java:
char c = '\u8B21';
System.out.println(c); // Output: 謡
JSON:
{"text": "\u8B21"} // Value: 謡
Python:
char = '\u8B21'
print(char) # Output: 謡
Perl:
my $char = "\x{8B21}";
print $char; # Output: 謡
PHP:
$char = "\x{8B21}";
echo $char; // Output: 謡
Ruby:
char = "\u{8B21}"
puts char # Output: 謡
Rust:
let c = '\u{8B21}';
println!("{}", c); // Output: 謡
Go:
char := '\u8B21'
fmt.Printf("%c\n", char) // Output: 謡
CSS:
/* CSS content property */
.element::before {
content: "\008B21"; /* 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=%E8%AC%A1
MD5:
c0a5bc1111c2e5c7749c387c1f878837
SHA1:
63a3b9a7d55cb646c75094341d4dca160cce254e
Base64:
6Kyh