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