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