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