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