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