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