C:
char c = '\uBB4A';
printf("%c\n", c); // Output: 뭊
JavaScript:
const char = '\uBB4A';
console.log(char); // Output: 뭊
Java:
char c = '\uBB4A';
System.out.println(c); // Output: 뭊
JSON:
{"text": "\uBB4A"} // Value: 뭊
Python:
char = '\uBB4A'
print(char) # Output: 뭊
Perl:
my $char = "\x{BB4A}";
print $char; # Output: 뭊
PHP:
$char = "\x{BB4A}";
echo $char; // Output: 뭊
Ruby:
char = "\u{BB4A}"
puts char # Output: 뭊
Rust:
let c = '\u{BB4A}';
println!("{}", c); // Output: 뭊
Go:
char := '\uBB4A'
fmt.Printf("%c\n", char) // Output: 뭊
CSS:
/* CSS content property */
.element::before {
content: "\00BB4A"; /* 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%AD%8A
MD5:
1e8f489f3711b29c2e067ab9cf89b337
SHA1:
e6f13a7bc8bd01eaaa0871c7c48f639fb814b9e1
Base64:
662K