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