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