Unicode Finder

"띾" U+B77E(HANGUL SYLLABLE RAGG)

U+B77E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE RAGG

Programming

C
\uB77E
JavaScript
\uB77E
Java
\uB77E
Json
\uB77E
Python
\uB77E
Perl
\x{B77E}
PHP
\x{B77E}
Ruby
\u{B77E}
Rust
\u{B77E}
Go
\uB77E

Web

CSS
\00B77E
HtmlDecimal
띾
HtmlHexadecimal
띾
Url
%EB%9D%BE

Code

MD5
ca2701b63f9c0d38c7841bc2107f19b8
Sha1
2e35c2042b43c09a1da469d230d345a473e2728a
Base64
652+

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB77E';
console.log(char);  // Output: 띾

Java:

char c = '\uB77E';
System.out.println(c);  // Output: 띾

JSON:

{"text": "\uB77E"}  // Value: 띾

Python:

char = '\uB77E'
print(char)  # Output: 띾

Perl:

my $char = "\x{B77E}";
print $char;  # Output: 띾

PHP:

$char = "\x{B77E}";
echo $char;  // Output: 띾

Ruby:

char = "\u{B77E}"
puts char  # Output: 띾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#46974;</p>  <!-- Display: 띾 -->

HTML Hexadecimal:

<p>HTML hex: &#xB77E;</p>  <!-- Display: 띾 -->

URL Encoding:

// 띾 URL encoding
https://unicodefinder.com/search.php?query=%EB%9D%BE

Encodings

MD5:

ca2701b63f9c0d38c7841bc2107f19b8

SHA1:

2e35c2042b43c09a1da469d230d345a473e2728a

Base64:

652+