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