C:
char c = '\u9145';
printf("%c\n", c); // Output: 酅
JavaScript:
const char = '\u9145';
console.log(char); // Output: 酅
Java:
char c = '\u9145';
System.out.println(c); // Output: 酅
JSON:
{"text": "\u9145"} // Value: 酅
Python:
char = '\u9145'
print(char) # Output: 酅
Perl:
my $char = "\x{9145}";
print $char; # Output: 酅
PHP:
$char = "\x{9145}";
echo $char; // Output: 酅
Ruby:
char = "\u{9145}"
puts char # Output: 酅
Rust:
let c = '\u{9145}';
println!("{}", c); // Output: 酅
Go:
char := '\u9145'
fmt.Printf("%c\n", char) // Output: 酅
CSS:
/* CSS content property */
.element::before {
content: "\009145"; /* 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%85
MD5:
f14a58892fa2525732f5c10d33e25bba
SHA1:
adcb56f4c9b6dd4cefd4fcf3f52ccddab70fd6ce
Base64:
6YWF