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