C:
char c = '\uCD9A';
printf("%c\n", c); // Output: 춚
JavaScript:
const char = '\uCD9A';
console.log(char); // Output: 춚
Java:
char c = '\uCD9A';
System.out.println(c); // Output: 춚
JSON:
{"text": "\uCD9A"} // Value: 춚
Python:
char = '\uCD9A'
print(char) # Output: 춚
Perl:
my $char = "\x{CD9A}";
print $char; # Output: 춚
PHP:
$char = "\x{CD9A}";
echo $char; // Output: 춚
Ruby:
char = "\u{CD9A}"
puts char # Output: 춚
Rust:
let c = '\u{CD9A}';
println!("{}", c); // Output: 춚
Go:
char := '\uCD9A'
fmt.Printf("%c\n", char) // Output: 춚
CSS:
/* CSS content property */
.element::before {
content: "\00CD9A"; /* 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%B6%9A
MD5:
0b65d8471fd5a0d755de3054f726b924
SHA1:
e02ab501d441ac90d1d9bc94fee7177c083b70e5
Base64:
7Laa