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