C:
char c = '\uC886';
printf("%c\n", c); // Output: 좆
JavaScript:
const char = '\uC886';
console.log(char); // Output: 좆
Java:
char c = '\uC886';
System.out.println(c); // Output: 좆
JSON:
{"text": "\uC886"} // Value: 좆
Python:
char = '\uC886'
print(char) # Output: 좆
Perl:
my $char = "\x{C886}";
print $char; # Output: 좆
PHP:
$char = "\x{C886}";
echo $char; // Output: 좆
Ruby:
char = "\u{C886}"
puts char # Output: 좆
Rust:
let c = '\u{C886}';
println!("{}", c); // Output: 좆
Go:
char := '\uC886'
fmt.Printf("%c\n", char) // Output: 좆
CSS:
/* CSS content property */
.element::before {
content: "\00C886"; /* 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=%EC%A2%86
MD5:
8ef50db2ff542bf3080e607dcbb6e198
SHA1:
c2d8b675dad7a78f2cd18645ef796f0afa21c536
Base64:
7KKG