Title: WP RupeeFont
Author: Ajay Maurya
Published: <strong>2018년 10월 5일</strong>
Last modified: 2026년 5월 12일

---

플러그인 검색

![](https://ps.w.org/wp-rupeefont/assets/banner-772x250.png?rev=1952333)

이 플러그인은 **최근 3개의 주요 워드프레스 출시와 시험 되지 않았습니다**. 워드프레스의
좀 더 최근 버전으로 이용할 때 더 이상 관리되지 않고 지원되지 않고 호환성 문제가 
있을 수 있습니다.

![](https://ps.w.org/wp-rupeefont/assets/icon-256x256.png?rev=1952333)

# WP RupeeFont

 작성자: [Ajay Maurya](https://profiles.wordpress.org/ajmaurya/)

[다운로드](https://downloads.wordpress.org/plugin/wp-rupeefont.2.0.0.zip)

 * [세부사항](https://ko.wordpress.org/plugins/wp-rupeefont/#description)
 * [평가](https://ko.wordpress.org/plugins/wp-rupeefont/#reviews)
 *  [설치](https://ko.wordpress.org/plugins/wp-rupeefont/#installation)
 * [개발](https://ko.wordpress.org/plugins/wp-rupeefont/#developers)

 [지원](https://wordpress.org/support/plugin/wp-rupeefont/)

## 설명

**WP RupeeFont** is a lightweight WordPress plugin that automatically converts “
Rs” or “Rs.” in your content to the **Indian Rupee symbol (₹)** — the official sign
for the Indian Rupee (INR), Unicode code point U+20B9.

Once activated, every `Rs 100`, `Rs.100`, or `Rs. 100` written in your posts, pages,
excerpts, and text widgets is rendered as `₹ 100` on the front end. No JavaScript,
no bundled fonts, no external requests, no configuration.

#### Why a plugin for the rupee symbol?

The ₹ symbol was introduced by the Government of India in 2010 and added to Unicode
the same year. Most systems render it natively today, but a lot of older WordPress
content was written with “Rs” or “Rs.” because the Unicode character wasn’t widely
supported at the time. This plugin upgrades that legacy text to the modern Indian
Rupee symbol on the fly — without you having to find-and-replace anything in your
database.

#### Features

 * **Server-side conversion** — runs in PHP via standard WordPress filters; no flash
   of unconverted content.
 * **Zero front-end overhead** — no JavaScript, no CSS, no font files loaded on 
   your site.
 * **Zero configuration** — install, activate, done.
 * **Word-boundary matching** — words like “Mrs” and “users” are never touched.
 * **Code-safe** — text inside `<script>`, `<style>`, `<pre>`, `<code>`, and `<textarea
   >` is left alone.
 * **Block editor and classic editor** both supported.
 * **Filters covered:** `the_content`, `the_excerpt`, `widget_text`, `widget_block_content`.
 * **Single PHP file** — no dependencies, no admin UI, no database tables.

#### Common use cases

 * Indian blogs and news sites with legacy “Rs” pricing in older articles.
 * Business and personal sites listing prices in Indian Rupees.
 * Travel, finance, and review sites that mention rupee amounts in post content.
 * Any WordPress site migrating older content to the modern Unicode rupee symbol.

#### About the Indian Rupee Symbol (₹)

The Indian Rupee sign (₹) was officially adopted by the Government of India on 15
July 2010, designed by D. Udaya Kumar of IIT Guwahati. The design combines the Devanagari
letter “र” (ra) with a horizontal stroke representing the Indian tricolour. Its 
Unicode code point is **U+20B9 INDIAN RUPEE SIGN**, added in Unicode 6.0, and the
ISO 4217 currency code for the Indian Rupee is **INR**.

## 스크린샷

[⌊"Rs" in post content rendered as ₹.⌉⌊"Rs" in post content rendered as ₹.⌉[

“Rs” in post content rendered as ₹.

## 설치

 1. Upload the plugin to `/wp-content/plugins/` or install it via the **Plugins  Add
    New** screen.
 2. Activate it through the **Plugins** menu.
 3. Done — there is no configuration screen. Existing “Rs” / “Rs.” text in your posts
    will display as ₹ immediately.

## FAQ

### How do I add the Indian Rupee symbol (₹) to my WordPress site?

Install and activate WP RupeeFont. Any “Rs” or “Rs.” already written in your posts,
pages, excerpts, and text widgets will render as ₹ on the front end automatically.
There are no shortcodes, no settings, and no database changes.

### What is the Unicode for the Indian Rupee symbol?

The Indian Rupee sign is **U+20B9** in Unicode (named INDIAN RUPEE SIGN), introduced
in Unicode 6.0 in October 2010. The character itself is ₹.

### How does the plugin convert Rs to ₹?

It hooks into the standard WordPress content filters and runs a server-side PHP 
regular expression that matches “Rs” or “Rs.” at word boundaries and replaces them
with the Unicode character ₹. The conversion happens before the page is sent to 
the browser, so visitors never see “Rs” flicker on screen.

### Does the plugin load any JavaScript or fonts?

No. Version 2.0 removed all bundled JavaScript, CSS, and font files. The plugin 
adds zero requests and zero bytes to your front-end page weight.

### Does it work with the block editor (Gutenberg)?

Yes. The plugin filters `the_content`, which is what both the block editor and the
classic editor produce on the front end.

### Will it touch text inside code blocks or scripts?

No. Text inside `<script>`, `<style>`, `<pre>`, `<code>`, and `<textarea>` is left
untouched, so code samples and embedded scripts are not affected.

### Why is “Mrs” or “users” not converted?

The plugin uses a word-boundary match, so “Rs” only converts when it stands alone
as a word. Words that happen to contain the letters “Rs” are never changed.

### Why is lowercase “rs” not converted?

Conversion is case-sensitive (only “Rs” or “Rs.”). This is a deliberate choice to
avoid false positives such as filenames, identifiers, and words that contain “rs”
in lowercase.

### Does this plugin affect prices shown by e-commerce or shop plugins?

No. E-commerce plugins render prices through their own templating, not through `
the_content`, so this plugin does not change cart, checkout, product, or order prices.
Most e-commerce plugins already support Indian Rupee as a built-in currency option—
that is the right place to configure store pricing. WP RupeeFont is for ordinary
post and page text.

### Where in the post content does it run?

On `the_content` (post body), `the_excerpt` (excerpts), `widget_text` (legacy text
widgets), and `widget_block_content` (block widgets).

### How do I disable it for a specific filter?

Call `remove_filter( 'the_content', 'wp_rupeefont_convert' );` (or any of the other
filter names) from your theme’s `functions.php` or another plugin.

## 후기

이 플러그인에 대한 평가가 없습니다.

## 기여자 & 개발자

“WP RupeeFont”(은)는 오픈 소스 소프트웨어입니다. 다음의 사람들이 이 플러그인에 기여하였습니다.

기여자

 *   [ Ajay Maurya ](https://profiles.wordpress.org/ajmaurya/)

[자국어로 “WP RupeeFont”(을)를 번역하세요.](https://translate.wordpress.org/projects/wp-plugins/wp-rupeefont)

### 개발에 관심이 있으십니까?

[코드 탐색하기](https://plugins.trac.wordpress.org/browser/wp-rupeefont/)는, [SVN 저장소](https://plugins.svn.wordpress.org/wp-rupeefont/)
를 확인하시거나, [개발 기록](https://plugins.trac.wordpress.org/log/wp-rupeefont/)
을 [RSS](https://plugins.trac.wordpress.org/log/wp-rupeefont/?limit=100&mode=stop_on_copy&format=rss)
로 구독하세요.

## 변경이력

#### 2.0.0

 * Complete rewrite. Replaced client-side WebRupee JavaScript and bundled font with
   server-side Unicode (₹) substitution.
 * Removed all bundled assets (JS, CSS, font files). The plugin is now a single 
   PHP file.
 * Conversion runs in PHP via standard WordPress filters. No front-end requests.
 * Skips content inside `<script>`, `<style>`, `<pre>`, `<code>`, and `<textarea
   >`.
 * Conversion is now case-sensitive (only “Rs” / “Rs.”) to reduce false positives.
 * Now also filters `the_excerpt`, `widget_text`, and `widget_block_content`.
 * Tested with WordPress 6.7. Requires PHP 7.4 or later.

#### 1.1.0

 * Missing WebRupee CSS file error resolved.

#### 1.0.0

 * First public release.

## 기초

 *  버전 **2.0.0**
 *  최근 업데이트: **1개월 전**
 *  활성화된 설치 **30+**
 *  워드프레스 버전 ** 5.0 또는 그 이상 **
 *  다음까지 시험됨: **6.7.5**
 *  PHP 버전 ** 7.4 또는 그 이상 **
 *  언어
 * [English (US)](https://wordpress.org/plugins/wp-rupeefont/)
 * 태그:
 * [currency symbol](https://ko.wordpress.org/plugins/tags/currency-symbol/)[india](https://ko.wordpress.org/plugins/tags/india/)
   [inr](https://ko.wordpress.org/plugins/tags/inr/)[Rupee Symbol](https://ko.wordpress.org/plugins/tags/rupee-symbol/)
 *  [고급 보기](https://ko.wordpress.org/plugins/wp-rupeefont/advanced/)

## 평점

아직 제출된 리뷰가 없습니다.

[Your review](https://wordpress.org/support/plugin/wp-rupeefont/reviews/#new-post)

[모든  리뷰 보기](https://wordpress.org/support/plugin/wp-rupeefont/reviews/)

## 기여자

 *   [ Ajay Maurya ](https://profiles.wordpress.org/ajmaurya/)

## 지원

할 말 있으신가요? 도움이 필요하신가요?

 [지원 포럼 보기](https://wordpress.org/support/plugin/wp-rupeefont/)

## 기부

이 플러그인이 발전하도록 도우시겠습니까?

 [ 이 플러그인에 기부하기 ](https://ajmaurya.com/)