아스키 코드 (11654)
Created:
문자를 숫자형으로 출력하면 아스키 코드가 나오기도 한다.
Bash
Bash 1
2
read str
printf '%d\n' "'$str"
$str
앞의 따옴표는 뒤에 오는 문자를 아스키 코드로 출력하기 위해 넣어줘야 한다.
C
C 1
2
3
4
5
6
7
8
9
#include <stdio.h>
int main(void) {
char str;
scanf("%c", &str);
printf("%d\n", str);
return 0;
}
Node.js
JavaScript 1
2
let str = require("fs").readFileSync(0).toString().trim();
console.log( str.charCodeAt(0) );
PHP
PHP 1
2
3
4
<?php
fscanf(STDIN, "%c", $x);
echo ord($x);
?>
Python3
Python 1
print(ord(input()))
Ruby
Ruby 1
puts gets.chomp.ord