C:
char c = '\uCBA0';
printf("%c\n", c); // Output: 쮠
JavaScript:
const char = '\uCBA0';
console.log(char); // Output: 쮠
Java:
char c = '\uCBA0';
System.out.println(c); // Output: 쮠
JSON:
{"text": "\uCBA0"} // Value: 쮠
Python:
char = '\uCBA0'
print(char) # Output: 쮠
Perl:
my $char = "\x{CBA0}";
print $char; # Output: 쮠
PHP:
$char = "\x{CBA0}";
echo $char; // Output: 쮠
Ruby:
char = "\u{CBA0}"
puts char # Output: 쮠
Rust:
let c = '\u{CBA0}';
println!("{}", c); // Output: 쮠
Go:
char := '\uCBA0'
fmt.Printf("%c\n", char) // Output: 쮠
CSS:
/* CSS content property */
.element::before {
content: "\00CBA0"; /* 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%A0
MD5:
819b34ddaf67d39d36bcd88bc08165ef
SHA1:
546c0f408d815cda599e74a5e98789c96a145616
Base64:
7K6g