C:
char c = '\uCBAF';
printf("%c\n", c); // Output: 쮯
JavaScript:
const char = '\uCBAF';
console.log(char); // Output: 쮯
Java:
char c = '\uCBAF';
System.out.println(c); // Output: 쮯
JSON:
{"text": "\uCBAF"} // Value: 쮯
Python:
char = '\uCBAF'
print(char) # Output: 쮯
Perl:
my $char = "\x{CBAF}";
print $char; # Output: 쮯
PHP:
$char = "\x{CBAF}";
echo $char; // Output: 쮯
Ruby:
char = "\u{CBAF}"
puts char # Output: 쮯
Rust:
let c = '\u{CBAF}';
println!("{}", c); // Output: 쮯
Go:
char := '\uCBAF'
fmt.Printf("%c\n", char) // Output: 쮯
CSS:
/* CSS content property */
.element::before {
content: "\00CBAF"; /* 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%AE%AF
MD5:
30118f8ec06b9afab22edf67b9216c24
SHA1:
94eb164502e9d1df2e25aca43b2d0fe6b6434463
Base64:
7K6v