C:
char c = '\uCEE7';
printf("%c\n", c); // Output: 컧
JavaScript:
const char = '\uCEE7';
console.log(char); // Output: 컧
Java:
char c = '\uCEE7';
System.out.println(c); // Output: 컧
JSON:
{"text": "\uCEE7"} // Value: 컧
Python:
char = '\uCEE7'
print(char) # Output: 컧
Perl:
my $char = "\x{CEE7}";
print $char; # Output: 컧
PHP:
$char = "\x{CEE7}";
echo $char; // Output: 컧
Ruby:
char = "\u{CEE7}"
puts char # Output: 컧
Rust:
let c = '\u{CEE7}';
println!("{}", c); // Output: 컧
Go:
char := '\uCEE7'
fmt.Printf("%c\n", char) // Output: 컧
CSS:
/* CSS content property */
.element::before {
content: "\00CEE7"; /* 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%A7
MD5:
3313f0d352f9b2a23e956c15bba88a89
SHA1:
1e02bb0d06b963016d2a6a48434d8b11b68459d5
Base64:
7Lun