C:
char c = '\uB384';
printf("%c\n", c); // Output: 뎄
JavaScript:
const char = '\uB384';
console.log(char); // Output: 뎄
Java:
char c = '\uB384';
System.out.println(c); // Output: 뎄
JSON:
{"text": "\uB384"} // Value: 뎄
Python:
char = '\uB384'
print(char) # Output: 뎄
Perl:
my $char = "\x{B384}";
print $char; # Output: 뎄
PHP:
$char = "\x{B384}";
echo $char; // Output: 뎄
Ruby:
char = "\u{B384}"
puts char # Output: 뎄
Rust:
let c = '\u{B384}';
println!("{}", c); // Output: 뎄
Go:
char := '\uB384'
fmt.Printf("%c\n", char) // Output: 뎄
CSS:
/* CSS content property */
.element::before {
content: "\00B384"; /* 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%8E%84
MD5:
0fd57a33c04f0dc92775c048f2a38412
SHA1:
0d56e9e1e5b1aa24e2330fd9f5117aab125d904a
Base64:
646E