C:
char c = '\uC9AD';
printf("%c\n", c); // Output: 즭
JavaScript:
const char = '\uC9AD';
console.log(char); // Output: 즭
Java:
char c = '\uC9AD';
System.out.println(c); // Output: 즭
JSON:
{"text": "\uC9AD"} // Value: 즭
Python:
char = '\uC9AD'
print(char) # Output: 즭
Perl:
my $char = "\x{C9AD}";
print $char; # Output: 즭
PHP:
$char = "\x{C9AD}";
echo $char; // Output: 즭
Ruby:
char = "\u{C9AD}"
puts char # Output: 즭
Rust:
let c = '\u{C9AD}';
println!("{}", c); // Output: 즭
Go:
char := '\uC9AD'
fmt.Printf("%c\n", char) // Output: 즭
CSS:
/* CSS content property */
.element::before {
content: "\00C9AD"; /* 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%A6%AD
MD5:
ef9998560a26c4a36f40f6723ddd625e
SHA1:
436e70fff9c5d99d4aea15ba35dea5531fe4c5eb
Base64:
7Kat