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