C:
char c = '\uC018';
printf("%c\n", c); // Output: 쀘
JavaScript:
const char = '\uC018';
console.log(char); // Output: 쀘
Java:
char c = '\uC018';
System.out.println(c); // Output: 쀘
JSON:
{"text": "\uC018"} // Value: 쀘
Python:
char = '\uC018'
print(char) # Output: 쀘
Perl:
my $char = "\x{C018}";
print $char; # Output: 쀘
PHP:
$char = "\x{C018}";
echo $char; // Output: 쀘
Ruby:
char = "\u{C018}"
puts char # Output: 쀘
Rust:
let c = '\u{C018}';
println!("{}", c); // Output: 쀘
Go:
char := '\uC018'
fmt.Printf("%c\n", char) // Output: 쀘
CSS:
/* CSS content property */
.element::before {
content: "\00C018"; /* 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%80%98
MD5:
72b89edd97270a565d3238c5c474d0bc
SHA1:
9c333cb00d97635c9fc4b9f1f7c3123b12072da0
Base64:
7ICY