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