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