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