Unicode Finder

"렯" U+B82F(HANGUL SYLLABLE RYEOLB)

U+B82F
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYEOLB

Programming

C
\uB82F
JavaScript
\uB82F
Java
\uB82F
Json
\uB82F
Python
\uB82F
Perl
\x{B82F}
PHP
\x{B82F}
Ruby
\u{B82F}
Rust
\u{B82F}
Go
\uB82F

Web

CSS
\00B82F
HtmlDecimal
렯
HtmlHexadecimal
렯
Url
%EB%A0%AF

Code

MD5
eaa334291458c84317a483bde7d5d456
Sha1
bead7f6a25471a0d95db0aed834699cba600399d
Base64
66Cv

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB82F';
console.log(char);  // Output: 렯

Java:

char c = '\uB82F';
System.out.println(c);  // Output: 렯

JSON:

{"text": "\uB82F"}  // Value: 렯

Python:

char = '\uB82F'
print(char)  # Output: 렯

Perl:

my $char = "\x{B82F}";
print $char;  # Output: 렯

PHP:

$char = "\x{B82F}";
echo $char;  // Output: 렯

Ruby:

char = "\u{B82F}"
puts char  # Output: 렯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47151;</p>  <!-- Display: 렯 -->

HTML Hexadecimal:

<p>HTML hex: &#xB82F;</p>  <!-- Display: 렯 -->

URL Encoding:

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

Encodings

MD5:

eaa334291458c84317a483bde7d5d456

SHA1:

bead7f6a25471a0d95db0aed834699cba600399d

Base64:

66Cv