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