C:
char c = '\uC9C8';
printf("%c\n", c); // Output: 질
JavaScript:
const char = '\uC9C8';
console.log(char); // Output: 질
Java:
char c = '\uC9C8';
System.out.println(c); // Output: 질
JSON:
{"text": "\uC9C8"} // Value: 질
Python:
char = '\uC9C8'
print(char) # Output: 질
Perl:
my $char = "\x{C9C8}";
print $char; # Output: 질
PHP:
$char = "\x{C9C8}";
echo $char; // Output: 질
Ruby:
char = "\u{C9C8}"
puts char # Output: 질
Rust:
let c = '\u{C9C8}';
println!("{}", c); // Output: 질
Go:
char := '\uC9C8'
fmt.Printf("%c\n", char) // Output: 질
CSS:
/* CSS content property */
.element::before {
content: "\00C9C8"; /* 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%A7%88
MD5:
99a14472f28a2a502617f80d9d0a0449
SHA1:
9236569adc0a21eb28825a605b0b767572f8846f
Base64:
7KeI