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