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