C:
char c = '\uB09B';
printf("%c\n", c); // Output: 낛
JavaScript:
const char = '\uB09B';
console.log(char); // Output: 낛
Java:
char c = '\uB09B';
System.out.println(c); // Output: 낛
JSON:
{"text": "\uB09B"} // Value: 낛
Python:
char = '\uB09B'
print(char) # Output: 낛
Perl:
my $char = "\x{B09B}";
print $char; # Output: 낛
PHP:
$char = "\x{B09B}";
echo $char; // Output: 낛
Ruby:
char = "\u{B09B}"
puts char # Output: 낛
Rust:
let c = '\u{B09B}';
println!("{}", c); // Output: 낛
Go:
char := '\uB09B'
fmt.Printf("%c\n", char) // Output: 낛
CSS:
/* CSS content property */
.element::before {
content: "\00B09B"; /* 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%82%9B
MD5:
e12717a67817499f57efaea506256844
SHA1:
999e6eee3af6f5b99b5aefae913817fd40692a4a
Base64:
64Kb