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