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