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