C:
char c = '\uCE8C';
printf("%c\n", c); // Output: 캌
JavaScript:
const char = '\uCE8C';
console.log(char); // Output: 캌
Java:
char c = '\uCE8C';
System.out.println(c); // Output: 캌
JSON:
{"text": "\uCE8C"} // Value: 캌
Python:
char = '\uCE8C'
print(char) # Output: 캌
Perl:
my $char = "\x{CE8C}";
print $char; # Output: 캌
PHP:
$char = "\x{CE8C}";
echo $char; // Output: 캌
Ruby:
char = "\u{CE8C}"
puts char # Output: 캌
Rust:
let c = '\u{CE8C}';
println!("{}", c); // Output: 캌
Go:
char := '\uCE8C'
fmt.Printf("%c\n", char) // Output: 캌
CSS:
/* CSS content property */
.element::before {
content: "\00CE8C"; /* 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%BA%8C
MD5:
23d16fcefce755f0e43fb3eb5900446b
SHA1:
454fd49ba9620830138da67bd7ac2744a1cff6fc
Base64:
7LqM