C:
char c = '\uC3EF';
printf("%c\n", c); // Output: 쏯
JavaScript:
const char = '\uC3EF';
console.log(char); // Output: 쏯
Java:
char c = '\uC3EF';
System.out.println(c); // Output: 쏯
JSON:
{"text": "\uC3EF"} // Value: 쏯
Python:
char = '\uC3EF'
print(char) # Output: 쏯
Perl:
my $char = "\x{C3EF}";
print $char; # Output: 쏯
PHP:
$char = "\x{C3EF}";
echo $char; // Output: 쏯
Ruby:
char = "\u{C3EF}"
puts char # Output: 쏯
Rust:
let c = '\u{C3EF}';
println!("{}", c); // Output: 쏯
Go:
char := '\uC3EF'
fmt.Printf("%c\n", char) // Output: 쏯
CSS:
/* CSS content property */
.element::before {
content: "\00C3EF"; /* 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%AF
MD5:
1e5171c44dadc4d7761ef0acda24a076
SHA1:
82f39be01f453485e3773dca102403668c1b0d10
Base64:
7I+v