summaryrefslogtreecommitdiff
path: root/html/u8c.html
blob: b6534092719f1d61ccf9810fb75207b1329be0f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8">
		<meta name="author" content="Gabriel Bjørnager Jensen">
		<meta name="darkreader-lock">
		<meta name="description" content="u8c is a library for handling Unicode sequences in C.">
		<meta name="keywords" content="achernar, u8c, unicode, utf-16, utf-32, utf-8, utf16, utf32, utf8">
		<meta name="viewport" content="width=device-width, initial-scale=1">

		<link href="/favicon.ico" rel="icon" type="image/vnd.microsoft.icon">
		<link href="/apple-touch-icon.png" rel="apple-touch-icon" type="image/png">
		<title>u8c | Achernar</title>

		<link href="/css/main.css" rel="stylesheet">
		<noscript>
			<link href="/css/noScript.css" rel="stylesheet">
		</noscript>

		<script src="/js/main.js" type="text/javascript"></script>
	</head>

	<body data-page="u8c">
		<!--#include virtual="/include/header.shtml"-->

		<div id="page">
			<h1 id ="anchor.about">u8c</h1>

			<section>
				<p><em>u8c</em> is a library for handling Unicode sequences in C.</p>
			</section>

			<h1 id ="anchor.features">features</h1>

			<section class="fullWidth">
				<p><em>u8c</em> supports the following facilities:</p>
				<br>
				<ul>
					<li>
						<p>Encoding and decoding <em>UTF-8</em></p>
					</li>
					<li>
						<p>Encoding and decoding <em>UTF-16</em></p>
					</li>
					<li>
						<p>Manipulation of <em>UTF-32</em> strings.</p>
					</li>
				</ul>
				<br>
				<p>Note that <em>UTF-32</em> is used as an intermediate format between conversions.</p>
			</section>

			<!--#include virtual="/include/footer.shtml"-->
		</div>
	</body>

	<script type="text/javascript">
		Ach.init();
	</script>
</html>