C:
char c = '\uB19F';
printf("%c\n", c); // Output: 놟
JavaScript:
const char = '\uB19F';
console.log(char); // Output: 놟
Java:
char c = '\uB19F';
System.out.println(c); // Output: 놟
JSON:
{"text": "\uB19F"} // Value: 놟
Python:
char = '\uB19F'
print(char) # Output: 놟
Perl:
my $char = "\x{B19F}";
print $char; # Output: 놟
PHP:
$char = "\x{B19F}";
echo $char; // Output: 놟
Ruby:
char = "\u{B19F}"
puts char # Output: 놟
Rust:
let c = '\u{B19F}';
println!("{}", c); // Output: 놟
Go:
char := '\uB19F'
fmt.Printf("%c\n", char) // Output: 놟
CSS:
/* CSS content property */
.element::before {
content: "\00B19F"; /* 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%9F
MD5:
4c7ec84e906ad06d85047ed6e68b0ae9
SHA1:
84ad6d30afa0025e301dd208b157d1c5e774238c
Base64:
64af