C:
char c = '\u9EAB';
printf("%c\n", c); // Output: 麫
JavaScript:
const char = '\u9EAB';
console.log(char); // Output: 麫
Java:
char c = '\u9EAB';
System.out.println(c); // Output: 麫
JSON:
{"text": "\u9EAB"} // Value: 麫
Python:
char = '\u9EAB'
print(char) # Output: 麫
Perl:
my $char = "\x{9EAB}";
print $char; # Output: 麫
PHP:
$char = "\x{9EAB}";
echo $char; // Output: 麫
Ruby:
char = "\u{9EAB}"
puts char # Output: 麫
Rust:
let c = '\u{9EAB}';
println!("{}", c); // Output: 麫
Go:
char := '\u9EAB'
fmt.Printf("%c\n", char) // Output: 麫
CSS:
/* CSS content property */
.element::before {
content: "\009EAB"; /* 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%BA%AB
MD5:
4bccedc4432393dfd0d89a71bd96a7dd
SHA1:
13d083a7e23bc1dd5af8a57f728f04ebf0db566d
Base64:
6bqr