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