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