C:
char c = '\uAD43';
printf("%c\n", c); // Output: 굃
JavaScript:
const char = '\uAD43';
console.log(char); // Output: 굃
Java:
char c = '\uAD43';
System.out.println(c); // Output: 굃
JSON:
{"text": "\uAD43"} // Value: 굃
Python:
char = '\uAD43'
print(char) # Output: 굃
Perl:
my $char = "\x{AD43}";
print $char; # Output: 굃
PHP:
$char = "\x{AD43}";
echo $char; // Output: 굃
Ruby:
char = "\u{AD43}"
puts char # Output: 굃
Rust:
let c = '\u{AD43}';
println!("{}", c); // Output: 굃
Go:
char := '\uAD43'
fmt.Printf("%c\n", char) // Output: 굃
CSS:
/* CSS content property */
.element::before {
content: "\00AD43"; /* 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=%EA%B5%83
MD5:
202c642184b5677da2e9fed47cb7b9ae
SHA1:
e56034608cf675981695e99b39f254a248585b1b
Base64:
6rWD