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