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