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