C:
char c = '\uB21A';
printf("%c\n", c); // Output: 눚
JavaScript:
const char = '\uB21A';
console.log(char); // Output: 눚
Java:
char c = '\uB21A';
System.out.println(c); // Output: 눚
JSON:
{"text": "\uB21A"} // Value: 눚
Python:
char = '\uB21A'
print(char) # Output: 눚
Perl:
my $char = "\x{B21A}";
print $char; # Output: 눚
PHP:
$char = "\x{B21A}";
echo $char; // Output: 눚
Ruby:
char = "\u{B21A}"
puts char # Output: 눚
Rust:
let c = '\u{B21A}';
println!("{}", c); // Output: 눚
Go:
char := '\uB21A'
fmt.Printf("%c\n", char) // Output: 눚
CSS:
/* CSS content property */
.element::before {
content: "\00B21A"; /* 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%88%9A
MD5:
3a98f904ee873e54327a7b4464fae69e
SHA1:
2563a8381ed7e25bfc36683fba91b3bb19a61528
Base64:
64ia