C:
char c = '\uC26C';
printf("%c\n", c); // Output: 쉬
JavaScript:
const char = '\uC26C';
console.log(char); // Output: 쉬
Java:
char c = '\uC26C';
System.out.println(c); // Output: 쉬
JSON:
{"text": "\uC26C"} // Value: 쉬
Python:
char = '\uC26C'
print(char) # Output: 쉬
Perl:
my $char = "\x{C26C}";
print $char; # Output: 쉬
PHP:
$char = "\x{C26C}";
echo $char; // Output: 쉬
Ruby:
char = "\u{C26C}"
puts char # Output: 쉬
Rust:
let c = '\u{C26C}';
println!("{}", c); // Output: 쉬
Go:
char := '\uC26C'
fmt.Printf("%c\n", char) // Output: 쉬
CSS:
/* CSS content property */
.element::before {
content: "\00C26C"; /* 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%AC
MD5:
21f338afd7d4c1891409a270cf8f6259
SHA1:
69d9f41b119819cd6f5a08623084e205d55b7485
Base64:
7Ims