C:
char c = '\uCAA5';
printf("%c\n", c); // Output: 쪥
JavaScript:
const char = '\uCAA5';
console.log(char); // Output: 쪥
Java:
char c = '\uCAA5';
System.out.println(c); // Output: 쪥
JSON:
{"text": "\uCAA5"} // Value: 쪥
Python:
char = '\uCAA5'
print(char) # Output: 쪥
Perl:
my $char = "\x{CAA5}";
print $char; # Output: 쪥
PHP:
$char = "\x{CAA5}";
echo $char; // Output: 쪥
Ruby:
char = "\u{CAA5}"
puts char # Output: 쪥
Rust:
let c = '\u{CAA5}';
println!("{}", c); // Output: 쪥
Go:
char := '\uCAA5'
fmt.Printf("%c\n", char) // Output: 쪥
CSS:
/* CSS content property */
.element::before {
content: "\00CAA5"; /* 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%A5
MD5:
1527bd36a59d38bbbb91c145677cf005
SHA1:
4fd3e81b635c40c8a3fd6e2dc4ce20b8fec7dd48
Base64:
7Kql