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