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