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