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