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