코드 에디터
20개 이상의 언어에 대한 구문 강조로 코드를 작성하고 미리봅니다.
14px
1
2
3
4
5
6
function fibonacci(n) {
if (n <= 1) return n;
return fibonacci(n - 1) + fibonacci(n - 2);
}
console.log(fibonacci(10)); // 55Lines: 6Characters: 130Bytes: 130
How to Use
- 1
Select the programming language from the dropdown.
- 2
Write or paste your code into the editor — syntax highlighting applies automatically.
- 3
Adjust font size as needed and copy the code with the copy button.
Features
20+ Languages
Syntax highlighting for JavaScript, TypeScript, Python, HTML, CSS, JSON, SQL, Go, Rust, and many more.
Syntax Highlighting
Color-coded syntax makes code easier to read and review at a glance.
Adjustable Font Size
Change the editor font size for comfortable reading and screen sharing.
One-Click Copy
Copy your entire code snippet to the clipboard with a single button click.
FAQ
어떤 언어를 지원하나요?
JavaScript, TypeScript, Python, HTML, CSS, JSON, SQL, Java, C++, Go, Rust, PHP, Ruby, Swift, Kotlin 등.
코드를 실행할 수 있나요?
구문 강조 미리보기 기능의 코드 에디터입니다. 실행은 전용 런타임 환경을 사용하세요.