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