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