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