C:
char c = '\uB844';
printf("%c\n", c); // Output: 롄
JavaScript:
const char = '\uB844';
console.log(char); // Output: 롄
Java:
char c = '\uB844';
System.out.println(c); // Output: 롄
JSON:
{"text": "\uB844"} // Value: 롄
Python:
char = '\uB844'
print(char) # Output: 롄
Perl:
my $char = "\x{B844}";
print $char; # Output: 롄
PHP:
$char = "\x{B844}";
echo $char; // Output: 롄
Ruby:
char = "\u{B844}"
puts char # Output: 롄
Rust:
let c = '\u{B844}';
println!("{}", c); // Output: 롄
Go:
char := '\uB844'
fmt.Printf("%c\n", char) // Output: 롄
CSS:
/* CSS content property */
.element::before {
content: "\00B844"; /* 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%A1%84
MD5:
8e32552be377950fe6b9b77e12296150
SHA1:
3be8a4ce1770bad62ab595fd4b18fbd21aa8ff8a
Base64:
66GE