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