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