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