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