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