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