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