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