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