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