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