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