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