C:
char c = '\uBA6E';
printf("%c\n", c); // Output: 멮
JavaScript:
const char = '\uBA6E';
console.log(char); // Output: 멮
Java:
char c = '\uBA6E';
System.out.println(c); // Output: 멮
JSON:
{"text": "\uBA6E"} // Value: 멮
Python:
char = '\uBA6E'
print(char) # Output: 멮
Perl:
my $char = "\x{BA6E}";
print $char; # Output: 멮
PHP:
$char = "\x{BA6E}";
echo $char; // Output: 멮
Ruby:
char = "\u{BA6E}"
puts char # Output: 멮
Rust:
let c = '\u{BA6E}';
println!("{}", c); // Output: 멮
Go:
char := '\uBA6E'
fmt.Printf("%c\n", char) // Output: 멮
CSS:
/* CSS content property */
.element::before {
content: "\00BA6E"; /* 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%A9%AE
MD5:
5145ac91cab01d77c34fc582b23c0f8c
SHA1:
5ea12f28c64916e6ee58c3ce7cce22147f6ea7f8
Base64:
66mu