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