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