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