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