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