C:
char c = '\uBA87';
printf("%c\n", c); // Output: 몇
JavaScript:
const char = '\uBA87';
console.log(char); // Output: 몇
Java:
char c = '\uBA87';
System.out.println(c); // Output: 몇
JSON:
{"text": "\uBA87"} // Value: 몇
Python:
char = '\uBA87'
print(char) # Output: 몇
Perl:
my $char = "\x{BA87}";
print $char; # Output: 몇
PHP:
$char = "\x{BA87}";
echo $char; // Output: 몇
Ruby:
char = "\u{BA87}"
puts char # Output: 몇
Rust:
let c = '\u{BA87}';
println!("{}", c); // Output: 몇
Go:
char := '\uBA87'
fmt.Printf("%c\n", char) // Output: 몇
CSS:
/* CSS content property */
.element::before {
content: "\00BA87"; /* 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%AA%87
MD5:
6f3a7124c3d027ea8bbed02157be848a
SHA1:
eaa640aced911a4dde2bbac13b2511e5b2daca9f
Base64:
66qH