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