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