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