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