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