C:
char c = '\u8867';
printf("%c\n", c); // Output: 衧
JavaScript:
const char = '\u8867';
console.log(char); // Output: 衧
Java:
char c = '\u8867';
System.out.println(c); // Output: 衧
JSON:
{"text": "\u8867"} // Value: 衧
Python:
char = '\u8867'
print(char) # Output: 衧
Perl:
my $char = "\x{8867}";
print $char; # Output: 衧
PHP:
$char = "\x{8867}";
echo $char; // Output: 衧
Ruby:
char = "\u{8867}"
puts char # Output: 衧
Rust:
let c = '\u{8867}';
println!("{}", c); // Output: 衧
Go:
char := '\u8867'
fmt.Printf("%c\n", char) // Output: 衧
CSS:
/* CSS content property */
.element::before {
content: "\008867"; /* 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%A1%A7
MD5:
bbd7171fbd37719034e6bdab58bd7081
SHA1:
2a6af04c255a6a76601ba3bb25f85f9c36fc175c
Base64:
6KGn