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