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