C:
char c = '\uB9FC';
printf("%c\n", c); // Output: 맼
JavaScript:
const char = '\uB9FC';
console.log(char); // Output: 맼
Java:
char c = '\uB9FC';
System.out.println(c); // Output: 맼
JSON:
{"text": "\uB9FC"} // Value: 맼
Python:
char = '\uB9FC'
print(char) # Output: 맼
Perl:
my $char = "\x{B9FC}";
print $char; # Output: 맼
PHP:
$char = "\x{B9FC}";
echo $char; // Output: 맼
Ruby:
char = "\u{B9FC}"
puts char # Output: 맼
Rust:
let c = '\u{B9FC}';
println!("{}", c); // Output: 맼
Go:
char := '\uB9FC'
fmt.Printf("%c\n", char) // Output: 맼
CSS:
/* CSS content property */
.element::before {
content: "\00B9FC"; /* 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=%EB%A7%BC
MD5:
5208ee201c993afc9246dc8ffec180da
SHA1:
ea081f1b3e6a51106ae002d4be0b874ae13b0480
Base64:
66e8