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