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