Created
July 7, 2022 22:53
-
-
Save alexandreaquiles/93f3e94c29da3c2fce50cf625b0e67a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Principal { | |
public static void main(String[] args) { | |
System.out.println("\u001b[1m Alura"); | |
System.out.println("Em negrito \u001b[m Redefinido"); | |
System.out.println("\u001b[37m \u001b[44m Alura \u001b[m"); | |
System.out.println("\u001b[37;1m \u001b[44;1m Alura \u001b[m"); | |
System.out.println("\u001b[97m \u001b[104m Alura \u001b[m"); | |
System.out.println("\u001b[38;5;214m \u001b[48;5;153m Alura \u001b[m"); | |
System.out.println("\u001b[38;2;255;255;255m \u001b[48;2;42;122;228m Alura \u001b[m"); | |
System.out.println("\uD83D\uDC99 ๐๏ธ"); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.log("\u001b[1m Alura"); | |
console.log("Em negrito \u001b[m Redefinido"); | |
console.log("\u001b[37m \u001b[44m Alura \u001b[m"); | |
console.log("\u001b[37;1m \u001b[44;1m Alura \u001b[m"); | |
console.log("\u001b[97m \u001b[104m Alura \u001b[m"); | |
console.log("\u001b[38;5;214m \u001b[48;5;153m Alura \u001b[m"); | |
console.log("\u001b[38;2;255;255;255m \u001b[48;2;42;122;228m Alura \u001b[m"); | |
console.log("\uD83D\uDC99 ๐๏ธ"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
print("\u001b[1m Alura") | |
print("Em negrito \u001b[m Redefinido") | |
print("\u001b[37m \u001b[44m Alura \u001b[m") | |
print("\u001b[37;1m \u001b[44;1m Alura \u001b[m") | |
print("\u001b[97m \u001b[104m Alura \u001b[m") | |
print("\u001b[38;5;214m \u001b[48;5;153m Alura \u001b[m") | |
print("\u001b[38;2;255;255;255m \u001b[48;2;42;122;228m Alura \u001b[m") | |
print("\U0001f499 ๐๏ธ") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment