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