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