C:
char c = '\uCF0B';
printf("%c\n", c); // Output: 켋
JavaScript:
const char = '\uCF0B';
console.log(char); // Output: 켋
Java:
char c = '\uCF0B';
System.out.println(c); // Output: 켋
JSON:
{"text": "\uCF0B"} // Value: 켋
Python:
char = '\uCF0B'
print(char) # Output: 켋
Perl:
my $char = "\x{CF0B}";
print $char; # Output: 켋
PHP:
$char = "\x{CF0B}";
echo $char; // Output: 켋
Ruby:
char = "\u{CF0B}"
puts char # Output: 켋
Rust:
let c = '\u{CF0B}';
println!("{}", c); // Output: 켋
Go:
char := '\uCF0B'
fmt.Printf("%c\n", char) // Output: 켋
CSS:
/* CSS content property */
.element::before {
content: "\00CF0B"; /* 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%8B
MD5:
c3f9197368c8296c8084f0fd160e6ddc
SHA1:
8358fe596fda3ddf483bd058b69c90a497d2e9d2
Base64:
7LyL