Unicode Finder

"랯" U+B7AF(HANGUL SYLLABLE RAEC)

U+B7AF
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RAEC

Programming

C
\uB7AF
JavaScript
\uB7AF
Java
\uB7AF
Json
\uB7AF
Python
\uB7AF
Perl
\x{B7AF}
PHP
\x{B7AF}
Ruby
\u{B7AF}
Rust
\u{B7AF}
Go
\uB7AF

Web

CSS
\00B7AF
HtmlDecimal
랯
HtmlHexadecimal
랯
Url
%EB%9E%AF

Code

MD5
f94f2e8123f8727f2896307075d56d8f
Sha1
4b325349006c7b50d49f531d562e952c72ef9098
Base64
656v

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB7AF';
console.log(char);  // Output: 랯

Java:

char c = '\uB7AF';
System.out.println(c);  // Output: 랯

JSON:

{"text": "\uB7AF"}  // Value: 랯

Python:

char = '\uB7AF'
print(char)  # Output: 랯

Perl:

my $char = "\x{B7AF}";
print $char;  # Output: 랯

PHP:

$char = "\x{B7AF}";
echo $char;  // Output: 랯

Ruby:

char = "\u{B7AF}"
puts char  # Output: 랯

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47023;</p>  <!-- Display: 랯 -->

HTML Hexadecimal:

<p>HTML hex: &#xB7AF;</p>  <!-- Display: 랯 -->

URL Encoding:

// 랯 URL encoding
https://unicodefinder.com/search.php?query=%EB%9E%AF

Encodings

MD5:

f94f2e8123f8727f2896307075d56d8f

SHA1:

4b325349006c7b50d49f531d562e952c72ef9098

Base64:

656v