C:
char c = '\uB09E';
printf("%c\n", c); // Output: 낞
JavaScript:
const char = '\uB09E';
console.log(char); // Output: 낞
Java:
char c = '\uB09E';
System.out.println(c); // Output: 낞
JSON:
{"text": "\uB09E"} // Value: 낞
Python:
char = '\uB09E'
print(char) # Output: 낞
Perl:
my $char = "\x{B09E}";
print $char; # Output: 낞
PHP:
$char = "\x{B09E}";
echo $char; // Output: 낞
Ruby:
char = "\u{B09E}"
puts char # Output: 낞
Rust:
let c = '\u{B09E}';
println!("{}", c); // Output: 낞
Go:
char := '\uB09E'
fmt.Printf("%c\n", char) // Output: 낞
CSS:
/* CSS content property */
.element::before {
content: "\00B09E"; /* 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%9E
MD5:
169a30563e749c524811acdf7b6d845f
SHA1:
0693a3d8af52e09474c70eccc2d5fc6d36e9fe5a
Base64:
64Ke