C:
char c = '\uCD03';
printf("%c\n", c); // Output: 촃
JavaScript:
const char = '\uCD03';
console.log(char); // Output: 촃
Java:
char c = '\uCD03';
System.out.println(c); // Output: 촃
JSON:
{"text": "\uCD03"} // Value: 촃
Python:
char = '\uCD03'
print(char) # Output: 촃
Perl:
my $char = "\x{CD03}";
print $char; # Output: 촃
PHP:
$char = "\x{CD03}";
echo $char; // Output: 촃
Ruby:
char = "\u{CD03}"
puts char # Output: 촃
Rust:
let c = '\u{CD03}';
println!("{}", c); // Output: 촃
Go:
char := '\uCD03'
fmt.Printf("%c\n", char) // Output: 촃
CSS:
/* CSS content property */
.element::before {
content: "\00CD03"; /* 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%B4%83
MD5:
35bdb4dbcf5f80030154013a9959b34e
SHA1:
ed6d1cc12b2a57d05edf3ad50e5f7375c97faf6b
Base64:
7LSD