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