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