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