C:
char c = '\uC743';
printf("%c\n", c); // Output: 읃
JavaScript:
const char = '\uC743';
console.log(char); // Output: 읃
Java:
char c = '\uC743';
System.out.println(c); // Output: 읃
JSON:
{"text": "\uC743"} // Value: 읃
Python:
char = '\uC743'
print(char) # Output: 읃
Perl:
my $char = "\x{C743}";
print $char; # Output: 읃
PHP:
$char = "\x{C743}";
echo $char; // Output: 읃
Ruby:
char = "\u{C743}"
puts char # Output: 읃
Rust:
let c = '\u{C743}';
println!("{}", c); // Output: 읃
Go:
char := '\uC743'
fmt.Printf("%c\n", char) // Output: 읃
CSS:
/* CSS content property */
.element::before {
content: "\00C743"; /* 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%9D%83
MD5:
d200425225b3b574407f24a94c656e8b
SHA1:
5e60b5c406c450b75b4600e7a682cae902affb92
Base64:
7J2D