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