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