Ahead of anything concrete, a new leak now suggests the handset will use a different name when launched. The new name indicates that Apple may consider the new iPhone SE as an extension of the iPhone 16 lineup. It is expected to run the A18 chipset with support for Apple Intelligence features.Tipster Majin Bu on This name ties in with the naming of the iPhone 16, iPhone 16 Plus, iPhone 16 Pro, and iPhone 16 Pro Max models launched in September.Based on what my source has reported, it seems that the new iPhone that Apple will unveil in 2025 will not be called iPhone SE4, but iPhone 16E. It should feature a design similar to the iPhone 14, with an OLED display and an action button. This isn’t the first time that the iPhone 16E name has surfaced on the Web. A Weibo post by tipster Fixed Focus Digital (translated from Chinese) from back in December suggested a potential name change for the next SE phone to ‘iPhone 16e’.The tipster has also shared alleged case renders of the iPhone SE 4 or iPhone 16E. The case suggests a cutout for the camera unit at the top left corner of the rear panel. Its design is expected to be based on the iPhone 14.iPhone SE 4: Rumored Specifications, PricingThe iPhone SE 4 aka iPhone 16E is expected to go official this year, presumably in March. Apple is likely to use the same processor featured in the entry-level iPhone 16 in the upcoming model. This would enable Apple Intelligence features in the new phone. It is said to pack 8GB of RAM and feature a 6.06-inch (1,170×2,532 pixels) LTPS OLED screen with a peak brightness of 800nits. The phone could offer Face ID support and pack a 3,279mAh battery. It is said to come with a single 48-megapixel rear camera like the latest iPhone 16.The next-generation iPhone SE is said to be priced at less than $500 (roughly Rs. 42,000). In South Korea, it is likely to cost more than KRW 8,00,000 (roughly Rs. 46,000). Affiliate links may be automatically generated – see our ethics statement for details.
Credit-Read More
// Function to fetch the latest posts
function fetchLatestPosts() {
const feedUrl = ‘https://newskiosk.pro/feed/’; // Replace with your blog’s RSS feed URL
fetch(feedUrl)
.then(response => response.text())
.then(str => new window.DOMParser().parseFromString(str, “text/xml”))
.then(data => {
const items = Array.from(data.querySelectorAll(“item”));
const latestPostsContainer = document.getElementById(“latest-posts”);
latestPostsContainer.innerHTML = ”; // Clear previous posts
// Shuffle the items array
const shuffledItems = items.sort(() => Math.random() – 0.5);
Random Latest Posts Display // Select the first 5 items from the shuffled array
const selectedItems = shuffledItems.slice(0, 5);
// Loop through the selected items and display them
selectedItems.forEach(post => {
const link = post.querySelector(“link”).textContent;
const description = post.querySelector(“description”).textContent;
// Create a new post element
const postElement = document.createElement(“div”);
postElement.classList.add(“latest-post”);
postElement.innerHTML = `
${description} Read more
`;
// Append the new post element to the container
latestPostsContainer.appendChild(postElement);
});
})
.catch(error => console.error(‘Error fetching the latest posts:’, error));
}
// Call the function to fetch and display the latest posts
fetchLatestPosts();