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