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