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