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