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