C:
char c = '\uBB6A';
printf("%c\n", c); // Output: 뭪
JavaScript:
const char = '\uBB6A';
console.log(char); // Output: 뭪
Java:
char c = '\uBB6A';
System.out.println(c); // Output: 뭪
JSON:
{"text": "\uBB6A"} // Value: 뭪
Python:
char = '\uBB6A'
print(char) # Output: 뭪
Perl:
my $char = "\x{BB6A}";
print $char; # Output: 뭪
PHP:
$char = "\x{BB6A}";
echo $char; // Output: 뭪
Ruby:
char = "\u{BB6A}"
puts char # Output: 뭪
Rust:
let c = '\u{BB6A}';
println!("{}", c); // Output: 뭪
Go:
char := '\uBB6A'
fmt.Printf("%c\n", char) // Output: 뭪
CSS:
/* CSS content property */
.element::before {
content: "\00BB6A"; /* 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%AA
MD5:
fc8644483d298250b0d9d76d0c6d523a
SHA1:
6f9449c375cb7683df61b0b632bbb92864eb729b
Base64:
662q