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