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