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