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