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