C:
char c = '\uAD84';
printf("%c\n", c); // Output: 궄
JavaScript:
const char = '\uAD84';
console.log(char); // Output: 궄
Java:
char c = '\uAD84';
System.out.println(c); // Output: 궄
JSON:
{"text": "\uAD84"} // Value: 궄
Python:
char = '\uAD84'
print(char) # Output: 궄
Perl:
my $char = "\x{AD84}";
print $char; # Output: 궄
PHP:
$char = "\x{AD84}";
echo $char; // Output: 궄
Ruby:
char = "\u{AD84}"
puts char # Output: 궄
Rust:
let c = '\u{AD84}';
println!("{}", c); // Output: 궄
Go:
char := '\uAD84'
fmt.Printf("%c\n", char) // Output: 궄
CSS:
/* CSS content property */
.element::before {
content: "\00AD84"; /* 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%B6%84
MD5:
caf2b0e5248064adea7742b5c59fd77a
SHA1:
f2462b2d77909bf728611f79665b4915b15f6203
Base64:
6raE