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