C:
char c = '\uCF23';
printf("%c\n", c); // Output: 켣
JavaScript:
const char = '\uCF23';
console.log(char); // Output: 켣
Java:
char c = '\uCF23';
System.out.println(c); // Output: 켣
JSON:
{"text": "\uCF23"} // Value: 켣
Python:
char = '\uCF23'
print(char) # Output: 켣
Perl:
my $char = "\x{CF23}";
print $char; # Output: 켣
PHP:
$char = "\x{CF23}";
echo $char; // Output: 켣
Ruby:
char = "\u{CF23}"
puts char # Output: 켣
Rust:
let c = '\u{CF23}';
println!("{}", c); // Output: 켣
Go:
char := '\uCF23'
fmt.Printf("%c\n", char) // Output: 켣
CSS:
/* CSS content property */
.element::before {
content: "\00CF23"; /* 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%BC%A3
MD5:
750014acd0275eadbe2cff81ffc1796a
SHA1:
f464a4c4c50e05ffdcb3cff4168bff4522188848
Base64:
7Lyj