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