---
title: "Write a SQL command to find the character from its ASCII value?"  
description: "Write a SQL command to find the character from its ASCII value?"  
author: "Ashutosh Kumar Verma"  
published: 2021-11-16  
updated: 2021-11-16  
canonical: https://www.mindstick.com/interview/33825/write-a-sql-command-to-find-the-character-from-its-ascii-value  
category: "mssql server"  
tags: ["sql server", "sql"]  
reading_time: 1 minute  

---

# Write a SQL command to find the character from its ASCII value?

## SQL CHAR():

SQL CHAR() function is used to find the characters or special character from its ASCII values.

## Example:

```
SELECT CHAR(65);
```

## Output:

A

```
SELECT CHAR(92);
```

## Output:

/

```
SELECT CHAR(105);
```

## Output:

i **\**

**\**

\

## Answers

### Answer by Ashutosh Kumar Verma

## SQL CHAR():

SQL CHAR() function is used to find the characters or special character from its ASCII values.

## Example:

```
SELECT CHAR(65);
```

## Output:

A

```
SELECT CHAR(92);
```

## Output:

/

```
SELECT CHAR(105);
```

## Output:

i **\**

**\**

\


---

Original Source: https://www.mindstick.com/interview/33825/write-a-sql-command-to-find-the-character-from-its-ascii-value

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
