C:
char c = '\uCB28';
printf("%c\n", c); // Output: 쬨
JavaScript:
const char = '\uCB28';
console.log(char); // Output: 쬨
Java:
char c = '\uCB28';
System.out.println(c); // Output: 쬨
JSON:
{"text": "\uCB28"} // Value: 쬨
Python:
char = '\uCB28'
print(char) # Output: 쬨
Perl:
my $char = "\x{CB28}";
print $char; # Output: 쬨
PHP:
$char = "\x{CB28}";
echo $char; // Output: 쬨
Ruby:
char = "\u{CB28}"
puts char # Output: 쬨
Rust:
let c = '\u{CB28}';
println!("{}", c); // Output: 쬨
Go:
char := '\uCB28'
fmt.Printf("%c\n", char) // Output: 쬨
CSS:
/* CSS content property */
.element::before {
content: "\00CB28"; /* 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%AC%A8
MD5:
ddf71c3309a9af16420f5b8e228e0420
SHA1:
21afcecd34f2916e09b0f9aa11213ed29be26d00
Base64:
7Kyo