C:
char c = '\uB7FF';
printf("%c\n", c); // Output: 럿
JavaScript:
const char = '\uB7FF';
console.log(char); // Output: 럿
Java:
char c = '\uB7FF';
System.out.println(c); // Output: 럿
JSON:
{"text": "\uB7FF"} // Value: 럿
Python:
char = '\uB7FF'
print(char) # Output: 럿
Perl:
my $char = "\x{B7FF}";
print $char; # Output: 럿
PHP:
$char = "\x{B7FF}";
echo $char; // Output: 럿
Ruby:
char = "\u{B7FF}"
puts char # Output: 럿
Rust:
let c = '\u{B7FF}';
println!("{}", c); // Output: 럿
Go:
char := '\uB7FF'
fmt.Printf("%c\n", char) // Output: 럿
CSS:
/* CSS content property */
.element::before {
content: "\00B7FF"; /* 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%BF
MD5:
737cce0a36f534ebc1e50bcfe25d3342
SHA1:
5b298d4b49275cc751bce34b55bbdc57a9cc4dec
Base64:
65+/