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