Results 1 to 7 of 7
  1. #1
    Player
    Kalleia's Avatar
    Join Date
    Aug 2013
    Posts
    55
    Character
    Kalleia Haruki
    World
    Hyperion
    Main Class
    Gladiator Lv 50

    Translate your sentences into Unicode!!

    For any simple Java user this code will make a lot of sense. I'm not that skilled myself so this is the extend of what I can give. Just REPLACE the bolded area

    public class Sentence
    {
    public static void main(String[] args)
    {
    String sent="how do you make those characters";
    String cuml="";
    String alph="abcdefghijklmnopqrstuvwxyz 0123456789";
    String unic=" ";
    for (int n=0;n<sent.length();n++)
    {
    String lett=sent.substring(n,n+1);
    for (int i=0;i<37;i++)
    {
    if (lett.toLowerCase().equals(alph.substring(i,i+1)))
    {
    lett=unic.substring(i,i+1);
    }
    }
    cuml=cuml+lett;
    }
    System.out.println(cuml);
    }
    }

    (0)
    Last edited by Kalleia; 01-26-2014 at 10:23 AM.

  2. #2
    Player
    Kalleia's Avatar
    Join Date
    Aug 2013
    Posts
    55
    Character
    Kalleia Haruki
    World
    Hyperion
    Main Class
    Gladiator Lv 50
    Added a picture for reference
    (0)

  3. #3
    Player
    ZohnoReecho's Avatar
    Join Date
    Aug 2013
    Posts
    958
    Character
    Zohno Reecho
    World
    Ragnarok
    Main Class
    Pugilist Lv 70
    here they are the characters I've found just copy paste them into the chat.

    translations icons
    
    crystal

    gil

    hexagon

    deny

    mirrored "shazam"

    PS symbols (O[]X/\)
    
    mouse buttons
    
    some dots

    0-9
    
    Lv ST Nv
    
    am/pm
    
    arrow

    ? A-O squared
    
    P-Z squared
    
    0-31 squared
    
    + alt.E
    
    clock

    arrows down

    asterisk

    square

    HQ
    (0)

  4. #4
    Player
    KonaMochi's Avatar
    Join Date
    Jan 2014
    Posts
    161
    Character
    M'hihiro Amariyo
    World
    Cactuar
    Main Class
    Archer Lv 60
    Does this picture work?



    :I

    Seriously tho- what is this, I dont even...?

    (PS- change "You" to "Me" in the gif :I)
    (0)

  5. #5
    Player
    Kalleia's Avatar
    Join Date
    Aug 2013
    Posts
    55
    Character
    Kalleia Haruki
    World
    Hyperion
    Main Class
    Gladiator Lv 50
    This is the code related to Java, that produces a translater
    (0)

  6. #6
    Player
    Kalleia's Avatar
    Join Date
    Aug 2013
    Posts
    55
    Character
    Kalleia Haruki
    World
    Hyperion
    Main Class
    Gladiator Lv 50
    Its a neat little piece of code, just basically functions by taking making an array of the alphabet in both normal lettering and in unicode, and comparing each letter of the sentence to it and giving the correct counterpart. After doing such it just sums it and prints out the new sentence.
    (0)

  7. #7
    Player
    indira's Avatar
    Join Date
    Mar 2011
    Posts
    2,376
    Character
    Indira Cliodhna
    World
    Sargatanas
    Main Class
    Pugilist Lv 50
    dang near the same thing in C++
    (0)