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