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