C:
char c = '\uB810';
printf("%c\n", c); // Output: 렐
JavaScript:
const char = '\uB810';
console.log(char); // Output: 렐
Java:
char c = '\uB810';
System.out.println(c); // Output: 렐
JSON:
{"text": "\uB810"} // Value: 렐
Python:
char = '\uB810'
print(char) # Output: 렐
Perl:
my $char = "\x{B810}";
print $char; # Output: 렐
PHP:
$char = "\x{B810}";
echo $char; // Output: 렐
Ruby:
char = "\u{B810}"
puts char # Output: 렐
Rust:
let c = '\u{B810}';
println!("{}", c); // Output: 렐
Go:
char := '\uB810'
fmt.Printf("%c\n", char) // Output: 렐
CSS:
/* CSS content property */
.element::before {
content: "\00B810"; /* 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%A0%90
MD5:
1d6f4810adca89b6cd56e06d2584a4c1
SHA1:
64711c27ff321648aa263f26e075d369593da960
Base64:
66CQ