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