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