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