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