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