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