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