C:
char c = '\uB7A2';
printf("%c\n", c); // Output: 랢
JavaScript:
const char = '\uB7A2';
console.log(char); // Output: 랢
Java:
char c = '\uB7A2';
System.out.println(c); // Output: 랢
JSON:
{"text": "\uB7A2"} // Value: 랢
Python:
char = '\uB7A2'
print(char) # Output: 랢
Perl:
my $char = "\x{B7A2}";
print $char; # Output: 랢
PHP:
$char = "\x{B7A2}";
echo $char; // Output: 랢
Ruby:
char = "\u{B7A2}"
puts char # Output: 랢
Rust:
let c = '\u{B7A2}';
println!("{}", c); // Output: 랢
Go:
char := '\uB7A2'
fmt.Printf("%c\n", char) // Output: 랢
CSS:
/* CSS content property */
.element::before {
content: "\00B7A2"; /* 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%9E%A2
MD5:
7547a7e3caaeae789ffdc154607d3c4d
SHA1:
3174e06acb2ea7e915210d03325fa3f320365188
Base64:
656i