C:
char c = '\uC269';
printf("%c\n", c); // Output: 쉩
JavaScript:
const char = '\uC269';
console.log(char); // Output: 쉩
Java:
char c = '\uC269';
System.out.println(c); // Output: 쉩
JSON:
{"text": "\uC269"} // Value: 쉩
Python:
char = '\uC269'
print(char) # Output: 쉩
Perl:
my $char = "\x{C269}";
print $char; # Output: 쉩
PHP:
$char = "\x{C269}";
echo $char; // Output: 쉩
Ruby:
char = "\u{C269}"
puts char # Output: 쉩
Rust:
let c = '\u{C269}';
println!("{}", c); // Output: 쉩
Go:
char := '\uC269'
fmt.Printf("%c\n", char) // Output: 쉩
CSS:
/* CSS content property */
.element::before {
content: "\00C269"; /* 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%89%A9
MD5:
60622c1a9d3f406325feb2b64e8e8bab
SHA1:
3fa54f523b97ff4ba1ee49ec176d1bedb92b9471
Base64:
7Imp