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