C:
char c = '\u9155';
printf("%c\n", c); // Output: 酕
JavaScript:
const char = '\u9155';
console.log(char); // Output: 酕
Java:
char c = '\u9155';
System.out.println(c); // Output: 酕
JSON:
{"text": "\u9155"} // Value: 酕
Python:
char = '\u9155'
print(char) # Output: 酕
Perl:
my $char = "\x{9155}";
print $char; # Output: 酕
PHP:
$char = "\x{9155}";
echo $char; // Output: 酕
Ruby:
char = "\u{9155}"
puts char # Output: 酕
Rust:
let c = '\u{9155}';
println!("{}", c); // Output: 酕
Go:
char := '\u9155'
fmt.Printf("%c\n", char) // Output: 酕
CSS:
/* CSS content property */
.element::before {
content: "\009155"; /* 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=%E9%85%95
MD5:
80f66e9c549b26bfe29748bee2bb4e93
SHA1:
9f47a89e14f5faaa7459c796230e135cfc0a7e72
Base64:
6YWV