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