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