C:
char c = '\uB7F1';
printf("%c\n", c); // Output: 럱
JavaScript:
const char = '\uB7F1';
console.log(char); // Output: 럱
Java:
char c = '\uB7F1';
System.out.println(c); // Output: 럱
JSON:
{"text": "\uB7F1"} // Value: 럱
Python:
char = '\uB7F1'
print(char) # Output: 럱
Perl:
my $char = "\x{B7F1}";
print $char; # Output: 럱
PHP:
$char = "\x{B7F1}";
echo $char; // Output: 럱
Ruby:
char = "\u{B7F1}"
puts char # Output: 럱
Rust:
let c = '\u{B7F1}';
println!("{}", c); // Output: 럱
Go:
char := '\uB7F1'
fmt.Printf("%c\n", char) // Output: 럱
CSS:
/* CSS content property */
.element::before {
content: "\00B7F1"; /* 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%9F%B1
MD5:
429e04bf3d66bf618cd7ff15241209eb
SHA1:
9485a3d768b8baafd715edaa57ba0daf4ae19a89
Base64:
65+x