C:
char c = '\uB989';
printf("%c\n", c); // Output: 릉
JavaScript:
const char = '\uB989';
console.log(char); // Output: 릉
Java:
char c = '\uB989';
System.out.println(c); // Output: 릉
JSON:
{"text": "\uB989"} // Value: 릉
Python:
char = '\uB989'
print(char) # Output: 릉
Perl:
my $char = "\x{B989}";
print $char; # Output: 릉
PHP:
$char = "\x{B989}";
echo $char; // Output: 릉
Ruby:
char = "\u{B989}"
puts char # Output: 릉
Rust:
let c = '\u{B989}';
println!("{}", c); // Output: 릉
Go:
char := '\uB989'
fmt.Printf("%c\n", char) // Output: 릉
CSS:
/* CSS content property */
.element::before {
content: "\00B989"; /* 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%A6%89
MD5:
bf1f391df71bbb2cdb26904cc985b73e
SHA1:
1ada1c50f82533b05314df275ae8d2cf0b9dc125
Base64:
66aJ