C:
char c = '\uBBC9';
printf("%c\n", c); // Output: 믉
JavaScript:
const char = '\uBBC9';
console.log(char); // Output: 믉
Java:
char c = '\uBBC9';
System.out.println(c); // Output: 믉
JSON:
{"text": "\uBBC9"} // Value: 믉
Python:
char = '\uBBC9'
print(char) # Output: 믉
Perl:
my $char = "\x{BBC9}";
print $char; # Output: 믉
PHP:
$char = "\x{BBC9}";
echo $char; // Output: 믉
Ruby:
char = "\u{BBC9}"
puts char # Output: 믉
Rust:
let c = '\u{BBC9}';
println!("{}", c); // Output: 믉
Go:
char := '\uBBC9'
fmt.Printf("%c\n", char) // Output: 믉
CSS:
/* CSS content property */
.element::before {
content: "\00BBC9"; /* 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%AF%89
MD5:
170e3a9014fe5ff1d83db7453beacd3b
SHA1:
2de331bf9c5e26ff10670e72ecbaefd878d61cea
Base64:
66+J