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