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