C:
char c = '\uC3B0';
printf("%c\n", c); // Output: 쎰
JavaScript:
const char = '\uC3B0';
console.log(char); // Output: 쎰
Java:
char c = '\uC3B0';
System.out.println(c); // Output: 쎰
JSON:
{"text": "\uC3B0"} // Value: 쎰
Python:
char = '\uC3B0'
print(char) # Output: 쎰
Perl:
my $char = "\x{C3B0}";
print $char; # Output: 쎰
PHP:
$char = "\x{C3B0}";
echo $char; // Output: 쎰
Ruby:
char = "\u{C3B0}"
puts char # Output: 쎰
Rust:
let c = '\u{C3B0}';
println!("{}", c); // Output: 쎰
Go:
char := '\uC3B0'
fmt.Printf("%c\n", char) // Output: 쎰
CSS:
/* CSS content property */
.element::before {
content: "\00C3B0"; /* 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%8E%B0
MD5:
8a69bd654a7659c38a796c2f6eb2c8cb
SHA1:
7b463c75588dfa019b5ed78e97de41a7f36777ad
Base64:
7I6w