A typeface where every character is identical

Currently on the hunt for a font that replaces each character with either a  or a *, creating an entirely illegible design. Surprisingly, my online search efforts have come up short. Does anyone know if there is a system font like this out there? Or perhaps have one to recommend?

Answer №1

For your needs, the closest match would be the Google font Flow Block, although keep in mind that spaces will still be present.

Answer №2

It's unlikely that a specific font with the desired character exists, but you can create a custom select option instead. By utilizing the data-* attribute in HTML5, you have the ability to add extra information to any element. This means you can design a select element that visually displays the character you need (e.g. *), while setting the corresponding value in data-something. Then, upon user interaction via a button click, you can execute a function to cycle through these personalized selects and retrieve the necessary data stored in their data-something attribute.

To see a basic implementation of this concept, check out the following code: https://jsfiddle.net/w0za8ut6/2/

Answer №3

Create your own custom font easily. Simply launch FontForge, the top choice for open source font editing, and design a font with your preferred glyph in each letter slot you require support for. Alternatively, you can craft a cmap 13 font, utilizing a single glyph mapped to the entire code range like Adobe's "Blank" font.

After designing your font, opt for the "web open font" format to generate a WOFF2 file rather than a traditional system font like ttf/otf. Once complete, you can load it using an @font-face rule.

However, keep in mind that this method may not significantly enhance password security—it's ultimately up to you to decide whether it's worth implementing.

Regardless, creating the font itself is remarkably straightforward.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Common problems encountered when web scraping

This question may seem simple, but I am new to web scraping and struggling to extract NFL Future prices from a website. Despite my efforts, the code I have written below does not return any results. Currently, I am aiming to retrieve the text of team names ...

Persistent Footer while scrolling on Internet Explorer

Trying to achieve a consistent look across Chrome, IE(11), and FF for my responsive website has been a challenge. The main issue I'm facing in IE is that when the site's content extends beyond the viewport, the scrollbar fails to reach the end d ...

Can we be confident in the security and effectiveness of utilizing ajax for login implementation?

Hello, I've written the code below to verify if a user is eligible to log in to a database. I've utilized SSL to secure the connection, but I'm unsure if this is still an effective method. Could anyone provide some advice? Thank you for your ...

Positioning Columns in an HTML Table

I'm currently troubleshooting the alignment of my table. The issue I'm facing is that the table columns are not aligning to the right as expected. My output looks like this: Date A X Y Z Date B X Y Z I want it to display like ...

Trigger a JavaScript event when attempting to input the maximum number of characters

I am currently facing a challenge with implementing a tooltip on a text area that has a maximum character limit of 500. The tooltip should only appear when the user reaches the maximum character count and attempts to input more characters. My previous appr ...

Using Intersection Observer in Typescript causes a bug when utilized with useRef

Currently, I have a text animation that is functioning flawlessly. However, my goal now is to implement an Intersection Observer so that the animation only triggers when I scroll down to the designated box. To achieve this, I utilized the useRef React hoo ...

The Firebug tool encountered an error while attempting to retrieve the specified URL

My HTML pages are displaying images, but Firebug indicates a failure to load the specified URL when I hover over the element on the Firebug panel. https://i.sstatic.net/GpiMG.png ...

I encounter a difficulty in changing the background color when I click on the horizontal navigation menu, as it does not display the currently selected menu

.unorder_Hnav,li,.classes:active { background-color:#7CA738; height: 50px; display: table-cell; width: 1024px; text-align: center; line-height: 52px; font-weight: bolder; color: #FFFFFF; background-color: #457025; ...

Storing JSON data within a fabric.js canvas

Is there a way to import and modify multiple SVG files, then save the JSON data to a database? I attempted to use the following code: canvas.item(0).sourcePath = '/URL/FILE.svg'; JSON.stringify(canvas.toDatalessJSON()); However, this me ...

Returning AJAX HTML Page Code (Duplicate)

I've been attempting to create a basic Search Bar, but when I try to send the data to PHP and use ALERT for testing purposes, it alerts back the entire HTML page content. Despite searching extensively, I couldn't find a solution. Here's my ...

Modify a webpage using jQuery within a single HTML document

I have a HTML document consisting of 5 pages with a navigation bar. In order to trigger a refresh on one specific page, I am using the following code: $("#page3").on("pagecreate", function(e) {}); Although it works initially, I am looking for a way to up ...

React default class name ... Before conditional operator takes effect

import './App.css' import {Button} from "antd" <Button shape="round" className={ istrue === "itstrue" ? "trueclass" : "trueclass active" } > TEXT </Button> ...

Pressing the different buttons on a form does not result in the form being submitted

I have a form with multiple buttons that, when submitted, will redirect to a different page and pass along some variables. echo " <form method=\"POST\" action=\"sightWordsTest.php\"> ...

Help with Crafting Responsive CSS Design

I am seeking help to better comprehend the concept of responsive design through this question. Let's imagine a header on a standard desktop screen. Within that, I have a div element containing the information I wish to showcase. .hdrinfo{ width: ...

"Enhancing Your Web Design with Ruby On Rails: Optimal Methods for Integrating CSS

I am a newcomer to Ruby on Rails and I am seeking advice on the best method to incorporate CSS/JS libraries for a specific controller and method in order to avoid unnecessary requests. Currently, I am using the following somewhat inefficient method: - # ...

Tips for minimizing the gap between an image and a photo slideshow

I am having an issue with the spacing between an image and a slideshow on my website. Here is where you can view the image: Between the grass logo and the slideshow, there seems to be some unwanted space. Is there a way to remove that space? (there is a ...

Is there a way to dynamically insert a <span></span> tag into every line of a <pre></pre> block in HTML without manually coding each line?

One of my recent challenges was figuring out how to incorporate line numbers into source code using CSS. I finally achieved the desired effect, as shown below: https://i.sstatic.net/A0P12.png However, achieving this required me to consistently use <sp ...

The entire background image is too large to fully display on the screen

(Source: https://i.sstatic.net/nZFuU.jpg.) Hi there, I have two files - one called "header" and the other called "footer". They are both the same size but mirror images of each other. The issue I'm facing is that the width of these files doesn' ...

Using CSS to filter the contents of an input field in Bootstrap 3

Is there a way to restrict the input field to only accept numbers? I attempted to use type='number', but non-numeric values can still be entered. How can I prevent users from inputting non-numbers? <input type="number" style="background-colo ...

Setting the height of the Angular UI modal relative to the height of the window

I am currently working on a modal that contains a significant amount of text. My main goal is to limit the height of the modal to the size of the window, while also adding a scrollbar to the content area positioned above the OK button. Check out the Plunk ...