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