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