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