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