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