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