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