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