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