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