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