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