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