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