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