C:
char c = '\uD1D5';
printf("%c\n", c); // Output: 퇕
JavaScript:
const char = '\uD1D5';
console.log(char); // Output: 퇕
Java:
char c = '\uD1D5';
System.out.println(c); // Output: 퇕
JSON:
{"text": "\uD1D5"} // Value: 퇕
Python:
char = '\uD1D5'
print(char) # Output: 퇕
Perl:
my $char = "\x{D1D5}";
print $char; # Output: 퇕
PHP:
$char = "\x{D1D5}";
echo $char; // Output: 퇕
Ruby:
char = "\u{D1D5}"
puts char # Output: 퇕
Rust:
let c = '\u{D1D5}';
println!("{}", c); // Output: 퇕
Go:
char := '\uD1D5'
fmt.Printf("%c\n", char) // Output: 퇕
CSS:
/* CSS content property */
.element::before {
content: "\00D1D5"; /* 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%95
MD5:
29c6368928d3c57057ba8dbc1d7a8296
SHA1:
114f6f6462e870f6b52536642e57d50b515d194a
Base64:
7YeV