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