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