In HTML5
<canvas> is an HTML element introduced with HTML5. It provides a way to draw pixel data on screen through the use of JavaScript APIs.
See Mozilla: Canvas tutorial, WHATWG living standard
Related tags: html5-canvas, javascript, html5
In Android
Related tags: android-canvas,
android
In classic Windows (Win32/Win64) GDI subsystem
Canvas is exposed by HDC handler. MSDN Reference. In application frameworks it would be either exposed like in Visual Basic or wrapped like CDC in MFC and TCanvas in VCL
Related tags: hdc
In WPF
The Canvas defines an area within which you can explicitly position child elements by using coordinates that are relative to the Canvas area. MSDN Reference
Related tags: wpf, wpf-controls
In Tkinter
Canvas is a general purpose widget of the Tkinter module, a standard Python interface to the Tk GUI Toolkit. It provides structured facilities and is commonly used to display and edit drawings.