C:
char c = '\uC2A5';
printf("%c\n", c); // Output: 슥
JavaScript:
const char = '\uC2A5';
console.log(char); // Output: 슥
Java:
char c = '\uC2A5';
System.out.println(c); // Output: 슥
JSON:
{"text": "\uC2A5"} // Value: 슥
Python:
char = '\uC2A5'
print(char) # Output: 슥
Perl:
my $char = "\x{C2A5}";
print $char; # Output: 슥
PHP:
$char = "\x{C2A5}";
echo $char; // Output: 슥
Ruby:
char = "\u{C2A5}"
puts char # Output: 슥
Rust:
let c = '\u{C2A5}';
println!("{}", c); // Output: 슥
Go:
char := '\uC2A5'
fmt.Printf("%c\n", char) // Output: 슥
CSS:
/* CSS content property */
.element::before {
content: "\00C2A5"; /* 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%8A%A5
MD5:
8487b3ce97c2c7d24d676cd2a6e69ee9
SHA1:
3edf021051cdb40470c99bf1ce1dda09b0c8decf
Base64:
7Iql