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