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