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