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