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