C:
char c = '\u8B33';
printf("%c\n", c); // Output: 謳
JavaScript:
const char = '\u8B33';
console.log(char); // Output: 謳
Java:
char c = '\u8B33';
System.out.println(c); // Output: 謳
JSON:
{"text": "\u8B33"} // Value: 謳
Python:
char = '\u8B33'
print(char) # Output: 謳
Perl:
my $char = "\x{8B33}";
print $char; # Output: 謳
PHP:
$char = "\x{8B33}";
echo $char; // Output: 謳
Ruby:
char = "\u{8B33}"
puts char # Output: 謳
Rust:
let c = '\u{8B33}';
println!("{}", c); // Output: 謳
Go:
char := '\u8B33'
fmt.Printf("%c\n", char) // Output: 謳
CSS:
/* CSS content property */
.element::before {
content: "\008B33"; /* 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%B3
MD5:
1dffc68f8ea4b3d34243c5e03972a1d8
SHA1:
eb9afcc0564448baa2c335eb5ed2863c4766fb81
Base64:
6Kyz