C:
char c = '\uCEE3';
printf("%c\n", c); // Output: 컣
JavaScript:
const char = '\uCEE3';
console.log(char); // Output: 컣
Java:
char c = '\uCEE3';
System.out.println(c); // Output: 컣
JSON:
{"text": "\uCEE3"} // Value: 컣
Python:
char = '\uCEE3'
print(char) # Output: 컣
Perl:
my $char = "\x{CEE3}";
print $char; # Output: 컣
PHP:
$char = "\x{CEE3}";
echo $char; // Output: 컣
Ruby:
char = "\u{CEE3}"
puts char # Output: 컣
Rust:
let c = '\u{CEE3}';
println!("{}", c); // Output: 컣
Go:
char := '\uCEE3'
fmt.Printf("%c\n", char) // Output: 컣
CSS:
/* CSS content property */
.element::before {
content: "\00CEE3"; /* 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%A3
MD5:
8743cf01fc15b2e8f5e9b0bc240b5d3d
SHA1:
3e3968c252154b644a477e056581fbc549e56391
Base64:
7Luj