C:
char c = '\uB9E8';
printf("%c\n", c); // Output: 맨
JavaScript:
const char = '\uB9E8';
console.log(char); // Output: 맨
Java:
char c = '\uB9E8';
System.out.println(c); // Output: 맨
JSON:
{"text": "\uB9E8"} // Value: 맨
Python:
char = '\uB9E8'
print(char) # Output: 맨
Perl:
my $char = "\x{B9E8}";
print $char; # Output: 맨
PHP:
$char = "\x{B9E8}";
echo $char; // Output: 맨
Ruby:
char = "\u{B9E8}"
puts char # Output: 맨
Rust:
let c = '\u{B9E8}';
println!("{}", c); // Output: 맨
Go:
char := '\uB9E8'
fmt.Printf("%c\n", char) // Output: 맨
CSS:
/* CSS content property */
.element::before {
content: "\00B9E8"; /* 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%A8
MD5:
202ac3a9844aa5d335dfdf0fa44d9f5a
SHA1:
947aa33b28aeacf8de2595baf230cf066118d567
Base64:
66eo