Unicode Finder

"렲" U+B832(HANGUL SYLLABLE RYEOLP)

U+B832
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYEOLP

Programming

C
\uB832
JavaScript
\uB832
Java
\uB832
Json
\uB832
Python
\uB832
Perl
\x{B832}
PHP
\x{B832}
Ruby
\u{B832}
Rust
\u{B832}
Go
\uB832

Web

CSS
\00B832
HtmlDecimal
렲
HtmlHexadecimal
렲
Url
%EB%A0%B2

Code

MD5
a3f3a09010e72a67563c6a31f69fcee6
Sha1
b37fdcd670b7d561fc03f730971fa38d25ff6f5a
Base64
66Cy

사용 예시

Programming Languages

C:

char c = '\uB832';
printf("%c\n", c);  // Output: 렲

JavaScript:

const char = '\uB832';
console.log(char);  // Output: 렲

Java:

char c = '\uB832';
System.out.println(c);  // Output: 렲

JSON:

{"text": "\uB832"}  // Value: 렲

Python:

char = '\uB832'
print(char)  # Output: 렲

Perl:

my $char = "\x{B832}";
print $char;  # Output: 렲

PHP:

$char = "\x{B832}";
echo $char;  // Output: 렲

Ruby:

char = "\u{B832}"
puts char  # Output: 렲

Rust:

let c = '\u{B832}';
println!("{}", c);  // Output: 렲

Go:

char := '\uB832'
fmt.Printf("%c\n", char)  // Output: 렲

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00B832";  /* Display: 렲 */
}

HTML Decimal:

<p>HTML decimal: &#47154;</p>  <!-- Display: 렲 -->

HTML Hexadecimal:

<p>HTML hex: &#xB832;</p>  <!-- Display: 렲 -->

URL Encoding:

// 렲 URL encoding
https://unicodefinder.com/search.php?query=%EB%A0%B2

Encodings

MD5:

a3f3a09010e72a67563c6a31f69fcee6

SHA1:

b37fdcd670b7d561fc03f730971fa38d25ff6f5a

Base64:

66Cy