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