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