Skip to content

Instantly share code, notes, and snippets.

View Hector-commits's full-sized avatar
🎯
Focusing

Héctor Rodríguez Parada Hector-commits

🎯
Focusing
View GitHub Profile
@Hector-commits
Hector-commits / GitCommitEmoji.md
Created June 6, 2025 16:10 — forked from parmentf/GitCommitEmoji.md
Git Commit message Emoji
@Hector-commits
Hector-commits / Unicode table
Created May 8, 2025 09:19 — forked from r-lyeh/Unicode table
Unicode table - List of most common Unicode characters *
Unicode table - List of most common Unicode characters *
* This summary list contains about 2000 characters for most common ocidental/latin languages and most printable symbols but not chinese, japanese, arab, archaic and some unprintable.
Contains character codes in HEX (hexadecimal), decimal number, name/description and corresponding printable symbol.
What is Unicode?
Unicode is a standard created to define letters of all languages ​​and characters such as punctuation and technical symbols. Today, UNICODE (UTF-8) is the most used character set encoding (used by almost 70% of websites, in 2013). The second most used character set is ISO-8859-1 (about 20% of websites), but this old encoding format is being replaced by Unicode.
How to identify the Unicode number for a character?
Type or paste a character:
@Hector-commits
Hector-commits / ChCrypto.java
Created September 13, 2022 16:24 — forked from jidolstar/ChCrypto.java
AES 256 encrypt / decrypt - JAVA, PHP, Kotlin
package chela.spring.core;
import javax.crypto.Cipher;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.util.Base64;
final public class ChCrypto {
final static Base64.Encoder encorder = Base64.getEncoder();
final static Base64.Decoder decorder = Base64.getDecoder();