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