C:
char c = '\uB7E8';
printf("%c\n", c); // Output: 럨
JavaScript:
const char = '\uB7E8';
console.log(char); // Output: 럨
Java:
char c = '\uB7E8';
System.out.println(c); // Output: 럨
JSON:
{"text": "\uB7E8"} // Value: 럨
Python:
char = '\uB7E8'
print(char) # Output: 럨
Perl:
my $char = "\x{B7E8}";
print $char; # Output: 럨
PHP:
$char = "\x{B7E8}";
echo $char; // Output: 럨
Ruby:
char = "\u{B7E8}"
puts char # Output: 럨
Rust:
let c = '\u{B7E8}';
println!("{}", c); // Output: 럨
Go:
char := '\uB7E8'
fmt.Printf("%c\n", char) // Output: 럨
CSS:
/* CSS content property */
.element::before {
content: "\00B7E8"; /* 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%9F%A8
MD5:
949e515e0d907a6999cc375ed296dc87
SHA1:
e3b352f840f7f53563ab72c130b4b3202b1722bc
Base64:
65+o