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