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