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