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