C:
char c = '\uCF2F';
printf("%c\n", c); // Output: 켯
JavaScript:
const char = '\uCF2F';
console.log(char); // Output: 켯
Java:
char c = '\uCF2F';
System.out.println(c); // Output: 켯
JSON:
{"text": "\uCF2F"} // Value: 켯
Python:
char = '\uCF2F'
print(char) # Output: 켯
Perl:
my $char = "\x{CF2F}";
print $char; # Output: 켯
PHP:
$char = "\x{CF2F}";
echo $char; // Output: 켯
Ruby:
char = "\u{CF2F}"
puts char # Output: 켯
Rust:
let c = '\u{CF2F}';
println!("{}", c); // Output: 켯
Go:
char := '\uCF2F'
fmt.Printf("%c\n", char) // Output: 켯
CSS:
/* CSS content property */
.element::before {
content: "\00CF2F"; /* 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%AF
MD5:
12e7fdb71cbfe2e519972b83bcd51ebb
SHA1:
25e0e580f526cdc82f6f0530722ec1a916f0ca63
Base64:
7Lyv