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