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