C:
char c = '\uB0EE';
printf("%c\n", c); // Output: 냮
JavaScript:
const char = '\uB0EE';
console.log(char); // Output: 냮
Java:
char c = '\uB0EE';
System.out.println(c); // Output: 냮
JSON:
{"text": "\uB0EE"} // Value: 냮
Python:
char = '\uB0EE'
print(char) # Output: 냮
Perl:
my $char = "\x{B0EE}";
print $char; # Output: 냮
PHP:
$char = "\x{B0EE}";
echo $char; // Output: 냮
Ruby:
char = "\u{B0EE}"
puts char # Output: 냮
Rust:
let c = '\u{B0EE}';
println!("{}", c); // Output: 냮
Go:
char := '\uB0EE'
fmt.Printf("%c\n", char) // Output: 냮
CSS:
/* CSS content property */
.element::before {
content: "\00B0EE"; /* 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%83%AE
MD5:
da996b9b3aad22f9cc5fdfa804272981
SHA1:
fc0309600348ea7b51e6aa3c63319ab8ee5d0e16
Base64:
64Ou