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