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