Unicode Finder

"렖" U+B816(HANGUL SYLLABLE RELP)

U+B816
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RELP

Programming

C
\uB816
JavaScript
\uB816
Java
\uB816
Json
\uB816
Python
\uB816
Perl
\x{B816}
PHP
\x{B816}
Ruby
\u{B816}
Rust
\u{B816}
Go
\uB816

Web

CSS
\00B816
HtmlDecimal
렖
HtmlHexadecimal
렖
Url
%EB%A0%96

Code

MD5
02731a5400f5b3cf5d154f62651bf668
Sha1
4eb232375984350b0f89c53518ba70edafe64276
Base64
66CW

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB816';
console.log(char);  // Output: 렖

Java:

char c = '\uB816';
System.out.println(c);  // Output: 렖

JSON:

{"text": "\uB816"}  // Value: 렖

Python:

char = '\uB816'
print(char)  # Output: 렖

Perl:

my $char = "\x{B816}";
print $char;  # Output: 렖

PHP:

$char = "\x{B816}";
echo $char;  // Output: 렖

Ruby:

char = "\u{B816}"
puts char  # Output: 렖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47126;</p>  <!-- Display: 렖 -->

HTML Hexadecimal:

<p>HTML hex: &#xB816;</p>  <!-- Display: 렖 -->

URL Encoding:

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

Encodings

MD5:

02731a5400f5b3cf5d154f62651bf668

SHA1:

4eb232375984350b0f89c53518ba70edafe64276

Base64:

66CW