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