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