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