C:
char c = '\uCF7B';
printf("%c\n", c); // Output: 콻
JavaScript:
const char = '\uCF7B';
console.log(char); // Output: 콻
Java:
char c = '\uCF7B';
System.out.println(c); // Output: 콻
JSON:
{"text": "\uCF7B"} // Value: 콻
Python:
char = '\uCF7B'
print(char) # Output: 콻
Perl:
my $char = "\x{CF7B}";
print $char; # Output: 콻
PHP:
$char = "\x{CF7B}";
echo $char; // Output: 콻
Ruby:
char = "\u{CF7B}"
puts char # Output: 콻
Rust:
let c = '\u{CF7B}';
println!("{}", c); // Output: 콻
Go:
char := '\uCF7B'
fmt.Printf("%c\n", char) // Output: 콻
CSS:
/* CSS content property */
.element::before {
content: "\00CF7B"; /* 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%BB
MD5:
46a9f65bc0c30366a058980b8e3c46ae
SHA1:
93c2071ccc5d13fa50fc678e1515f492dcbe75fd
Base64:
7L27