C:
char c = '\uCF62';
printf("%c\n", c); // Output: 콢
JavaScript:
const char = '\uCF62';
console.log(char); // Output: 콢
Java:
char c = '\uCF62';
System.out.println(c); // Output: 콢
JSON:
{"text": "\uCF62"} // Value: 콢
Python:
char = '\uCF62'
print(char) # Output: 콢
Perl:
my $char = "\x{CF62}";
print $char; # Output: 콢
PHP:
$char = "\x{CF62}";
echo $char; // Output: 콢
Ruby:
char = "\u{CF62}"
puts char # Output: 콢
Rust:
let c = '\u{CF62}';
println!("{}", c); // Output: 콢
Go:
char := '\uCF62'
fmt.Printf("%c\n", char) // Output: 콢
CSS:
/* CSS content property */
.element::before {
content: "\00CF62"; /* 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%BD%A2
MD5:
5c14fd6a60cd45e0fc13aaf241e60433
SHA1:
d4cd689257ee4807afdcbd4cd99a3110f5b68fbd
Base64:
7L2i