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