C:
char c = '\uB7A5';
printf("%c\n", c); // Output: 랥
JavaScript:
const char = '\uB7A5';
console.log(char); // Output: 랥
Java:
char c = '\uB7A5';
System.out.println(c); // Output: 랥
JSON:
{"text": "\uB7A5"} // Value: 랥
Python:
char = '\uB7A5'
print(char) # Output: 랥
Perl:
my $char = "\x{B7A5}";
print $char; # Output: 랥
PHP:
$char = "\x{B7A5}";
echo $char; // Output: 랥
Ruby:
char = "\u{B7A5}"
puts char # Output: 랥
Rust:
let c = '\u{B7A5}';
println!("{}", c); // Output: 랥
Go:
char := '\uB7A5'
fmt.Printf("%c\n", char) // Output: 랥
CSS:
/* CSS content property */
.element::before {
content: "\00B7A5"; /* 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%A5
MD5:
6edfc21a71de22417cc71f03838a8a59
SHA1:
b96044844cd7374b3301aa4e68282eec0fb29e2e
Base64:
656l