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