C:
char c = '\uC9F0';
printf("%c\n", c); // Output: 짰
JavaScript:
const char = '\uC9F0';
console.log(char); // Output: 짰
Java:
char c = '\uC9F0';
System.out.println(c); // Output: 짰
JSON:
{"text": "\uC9F0"} // Value: 짰
Python:
char = '\uC9F0'
print(char) # Output: 짰
Perl:
my $char = "\x{C9F0}";
print $char; # Output: 짰
PHP:
$char = "\x{C9F0}";
echo $char; // Output: 짰
Ruby:
char = "\u{C9F0}"
puts char # Output: 짰
Rust:
let c = '\u{C9F0}';
println!("{}", c); // Output: 짰
Go:
char := '\uC9F0'
fmt.Printf("%c\n", char) // Output: 짰
CSS:
/* CSS content property */
.element::before {
content: "\00C9F0"; /* 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%A7%B0
MD5:
932d61b903e0b46270621d71930ae127
SHA1:
668dcc39da43fd710ace20b0a797099ba439fbb7
Base64:
7Kew