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