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