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