Unicode Finder

"랥" U+B7A5(HANGUL SYLLABLE RAELT)

U+B7A5
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RAELT

Programming

C
\uB7A5
JavaScript
\uB7A5
Java
\uB7A5
Json
\uB7A5
Python
\uB7A5
Perl
\x{B7A5}
PHP
\x{B7A5}
Ruby
\u{B7A5}
Rust
\u{B7A5}
Go
\uB7A5

Web

CSS
\00B7A5
HtmlDecimal
랥
HtmlHexadecimal
랥
Url
%EB%9E%A5

Code

MD5
6edfc21a71de22417cc71f03838a8a59
Sha1
b96044844cd7374b3301aa4e68282eec0fb29e2e
Base64
656l

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB7A5';
console.log(char);  // Output: 랥

Java:

char c = '\uB7A5';
System.out.println(c);  // Output: 랥

JSON:

{"text": "\uB7A5"}  // Value: 랥

Python:

char = '\uB7A5'
print(char)  # Output: 랥

Perl:

my $char = "\x{B7A5}";
print $char;  # Output: 랥

PHP:

$char = "\x{B7A5}";
echo $char;  // Output: 랥

Ruby:

char = "\u{B7A5}"
puts char  # Output: 랥

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47013;</p>  <!-- Display: 랥 -->

HTML Hexadecimal:

<p>HTML hex: &#xB7A5;</p>  <!-- Display: 랥 -->

URL Encoding:

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

Encodings

MD5:

6edfc21a71de22417cc71f03838a8a59

SHA1:

b96044844cd7374b3301aa4e68282eec0fb29e2e

Base64:

656l