C:
char c = '\uBA5C';
printf("%c\n", c); // Output: 멜
JavaScript:
const char = '\uBA5C';
console.log(char); // Output: 멜
Java:
char c = '\uBA5C';
System.out.println(c); // Output: 멜
JSON:
{"text": "\uBA5C"} // Value: 멜
Python:
char = '\uBA5C'
print(char) # Output: 멜
Perl:
my $char = "\x{BA5C}";
print $char; # Output: 멜
PHP:
$char = "\x{BA5C}";
echo $char; // Output: 멜
Ruby:
char = "\u{BA5C}"
puts char # Output: 멜
Rust:
let c = '\u{BA5C}';
println!("{}", c); // Output: 멜
Go:
char := '\uBA5C'
fmt.Printf("%c\n", char) // Output: 멜
CSS:
/* CSS content property */
.element::before {
content: "\00BA5C"; /* 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%9C
MD5:
8c164c2d2421a588f2d0524c8bf21f37
SHA1:
64fdd6a11eb94f8d0dd39e671fbdb86aaecbed8d
Base64:
66mc