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