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