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