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