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