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