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