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