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