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