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