Unicode Finder

"랸" U+B7B8(HANGUL SYLLABLE RYAN)

U+B7B8
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RYAN

Programming

C
\uB7B8
JavaScript
\uB7B8
Java
\uB7B8
Json
\uB7B8
Python
\uB7B8
Perl
\x{B7B8}
PHP
\x{B7B8}
Ruby
\u{B7B8}
Rust
\u{B7B8}
Go
\uB7B8

Web

CSS
\00B7B8
HtmlDecimal
랸
HtmlHexadecimal
랸
Url
%EB%9E%B8

Code

MD5
1a93fb3c52a844329691aedfb8438831
Sha1
c9197e462b8de4237d8d8088a0e6fe8dd6b226c1
Base64
6564

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB7B8';
console.log(char);  // Output: 랸

Java:

char c = '\uB7B8';
System.out.println(c);  // Output: 랸

JSON:

{"text": "\uB7B8"}  // Value: 랸

Python:

char = '\uB7B8'
print(char)  # Output: 랸

Perl:

my $char = "\x{B7B8}";
print $char;  # Output: 랸

PHP:

$char = "\x{B7B8}";
echo $char;  // Output: 랸

Ruby:

char = "\u{B7B8}"
puts char  # Output: 랸

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#47032;</p>  <!-- Display: 랸 -->

HTML Hexadecimal:

<p>HTML hex: &#xB7B8;</p>  <!-- Display: 랸 -->

URL Encoding:

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

Encodings

MD5:

1a93fb3c52a844329691aedfb8438831

SHA1:

c9197e462b8de4237d8d8088a0e6fe8dd6b226c1

Base64:

6564