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