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