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