C:
char c = '\uCF44';
printf("%c\n", c); // Output: 콄
JavaScript:
const char = '\uCF44';
console.log(char); // Output: 콄
Java:
char c = '\uCF44';
System.out.println(c); // Output: 콄
JSON:
{"text": "\uCF44"} // Value: 콄
Python:
char = '\uCF44'
print(char) # Output: 콄
Perl:
my $char = "\x{CF44}";
print $char; # Output: 콄
PHP:
$char = "\x{CF44}";
echo $char; // Output: 콄
Ruby:
char = "\u{CF44}"
puts char # Output: 콄
Rust:
let c = '\u{CF44}';
println!("{}", c); // Output: 콄
Go:
char := '\uCF44'
fmt.Printf("%c\n", char) // Output: 콄
CSS:
/* CSS content property */
.element::before {
content: "\00CF44"; /* 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%84
MD5:
3801d0ee625d2654eb313df81cfa4c91
SHA1:
a09abc44943940ca32a9d62f7b3fafaa316b4ad6
Base64:
7L2E