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