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