C:
char c = '\uC3B1';
printf("%c\n", c); // Output: 쎱
JavaScript:
const char = '\uC3B1';
console.log(char); // Output: 쎱
Java:
char c = '\uC3B1';
System.out.println(c); // Output: 쎱
JSON:
{"text": "\uC3B1"} // Value: 쎱
Python:
char = '\uC3B1'
print(char) # Output: 쎱
Perl:
my $char = "\x{C3B1}";
print $char; # Output: 쎱
PHP:
$char = "\x{C3B1}";
echo $char; // Output: 쎱
Ruby:
char = "\u{C3B1}"
puts char # Output: 쎱
Rust:
let c = '\u{C3B1}';
println!("{}", c); // Output: 쎱
Go:
char := '\uC3B1'
fmt.Printf("%c\n", char) // Output: 쎱
CSS:
/* CSS content property */
.element::before {
content: "\00C3B1"; /* 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%B1
MD5:
89997921a2d6a8b792d1f3239c1df7cd
SHA1:
df9e1ae93eb74b9d6e0018babb39be3048e3d08d
Base64:
7I6x