C:
char c = '\uBB8D';
printf("%c\n", c); // Output: 뮍
JavaScript:
const char = '\uBB8D';
console.log(char); // Output: 뮍
Java:
char c = '\uBB8D';
System.out.println(c); // Output: 뮍
JSON:
{"text": "\uBB8D"} // Value: 뮍
Python:
char = '\uBB8D'
print(char) # Output: 뮍
Perl:
my $char = "\x{BB8D}";
print $char; # Output: 뮍
PHP:
$char = "\x{BB8D}";
echo $char; // Output: 뮍
Ruby:
char = "\u{BB8D}"
puts char # Output: 뮍
Rust:
let c = '\u{BB8D}';
println!("{}", c); // Output: 뮍
Go:
char := '\uBB8D'
fmt.Printf("%c\n", char) // Output: 뮍
CSS:
/* CSS content property */
.element::before {
content: "\00BB8D"; /* 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%AE%8D
MD5:
8c106dffec22b58a1828e18ae896196d
SHA1:
e77fed2478f7ab652ba5828d18f6b3be05154663
Base64:
666N