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