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