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