C:
char c = '\uCFA2';
printf("%c\n", c); // Output: 쾢
JavaScript:
const char = '\uCFA2';
console.log(char); // Output: 쾢
Java:
char c = '\uCFA2';
System.out.println(c); // Output: 쾢
JSON:
{"text": "\uCFA2"} // Value: 쾢
Python:
char = '\uCFA2'
print(char) # Output: 쾢
Perl:
my $char = "\x{CFA2}";
print $char; # Output: 쾢
PHP:
$char = "\x{CFA2}";
echo $char; // Output: 쾢
Ruby:
char = "\u{CFA2}"
puts char # Output: 쾢
Rust:
let c = '\u{CFA2}';
println!("{}", c); // Output: 쾢
Go:
char := '\uCFA2'
fmt.Printf("%c\n", char) // Output: 쾢
CSS:
/* CSS content property */
.element::before {
content: "\00CFA2"; /* 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%BE%A2
MD5:
a47ef71cf73d073189c877940ac0fcab
SHA1:
be4b607c79fd8f4454943d785af6393dd036709d
Base64:
7L6i