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