C:
char c = '\uC7C0';
printf("%c\n", c); // Output: 쟀
JavaScript:
const char = '\uC7C0';
console.log(char); // Output: 쟀
Java:
char c = '\uC7C0';
System.out.println(c); // Output: 쟀
JSON:
{"text": "\uC7C0"} // Value: 쟀
Python:
char = '\uC7C0'
print(char) # Output: 쟀
Perl:
my $char = "\x{C7C0}";
print $char; # Output: 쟀
PHP:
$char = "\x{C7C0}";
echo $char; // Output: 쟀
Ruby:
char = "\u{C7C0}"
puts char # Output: 쟀
Rust:
let c = '\u{C7C0}';
println!("{}", c); // Output: 쟀
Go:
char := '\uC7C0'
fmt.Printf("%c\n", char) // Output: 쟀
CSS:
/* CSS content property */
.element::before {
content: "\00C7C0"; /* 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%9F%80
MD5:
e0dd6aed11e5d8dd2ba5239c00567e60
SHA1:
e3cadf50080bc697ee7950d6141fe9cfa7105a78
Base64:
7J+A