C:
char c = '\uC3F1';
printf("%c\n", c); // Output: 쏱
JavaScript:
const char = '\uC3F1';
console.log(char); // Output: 쏱
Java:
char c = '\uC3F1';
System.out.println(c); // Output: 쏱
JSON:
{"text": "\uC3F1"} // Value: 쏱
Python:
char = '\uC3F1'
print(char) # Output: 쏱
Perl:
my $char = "\x{C3F1}";
print $char; # Output: 쏱
PHP:
$char = "\x{C3F1}";
echo $char; // Output: 쏱
Ruby:
char = "\u{C3F1}"
puts char # Output: 쏱
Rust:
let c = '\u{C3F1}';
println!("{}", c); // Output: 쏱
Go:
char := '\uC3F1'
fmt.Printf("%c\n", char) // Output: 쏱
CSS:
/* CSS content property */
.element::before {
content: "\00C3F1"; /* 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%8F%B1
MD5:
c538b3228ab1fac615bfbc5663db05ae
SHA1:
57f6e80f6d27ca34ad2cdd1cee2a932c97ae947d
Base64:
7I+x