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