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