C:
char c = '\u8850';
printf("%c\n", c); // Output: 衐
JavaScript:
const char = '\u8850';
console.log(char); // Output: 衐
Java:
char c = '\u8850';
System.out.println(c); // Output: 衐
JSON:
{"text": "\u8850"} // Value: 衐
Python:
char = '\u8850'
print(char) # Output: 衐
Perl:
my $char = "\x{8850}";
print $char; # Output: 衐
PHP:
$char = "\x{8850}";
echo $char; // Output: 衐
Ruby:
char = "\u{8850}"
puts char # Output: 衐
Rust:
let c = '\u{8850}';
println!("{}", c); // Output: 衐
Go:
char := '\u8850'
fmt.Printf("%c\n", char) // Output: 衐
CSS:
/* CSS content property */
.element::before {
content: "\008850"; /* 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%90
MD5:
5d2c0ff07f5f16732e459e2c925fccf5
SHA1:
e50e1b7da2f5c318aa9a8b74f495da9aa7e6f487
Base64:
6KGQ