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