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