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