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