C:
char c = '\uBAF1';
printf("%c\n", c); // Output: 뫱
JavaScript:
const char = '\uBAF1';
console.log(char); // Output: 뫱
Java:
char c = '\uBAF1';
System.out.println(c); // Output: 뫱
JSON:
{"text": "\uBAF1"} // Value: 뫱
Python:
char = '\uBAF1'
print(char) # Output: 뫱
Perl:
my $char = "\x{BAF1}";
print $char; # Output: 뫱
PHP:
$char = "\x{BAF1}";
echo $char; // Output: 뫱
Ruby:
char = "\u{BAF1}"
puts char # Output: 뫱
Rust:
let c = '\u{BAF1}';
println!("{}", c); // Output: 뫱
Go:
char := '\uBAF1'
fmt.Printf("%c\n", char) // Output: 뫱
CSS:
/* CSS content property */
.element::before {
content: "\00BAF1"; /* 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%AB%B1
MD5:
d810ade4f8131a296824c525570f957f
SHA1:
c015c5f0c31e7a6a078ec273136158d21e6d7247
Base64:
66ux