Unicode Finder

"끕" U+B055(HANGUL SYLLABLE GGEUB)

U+B055
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGEUB

Programming

C
\uB055
JavaScript
\uB055
Java
\uB055
Json
\uB055
Python
\uB055
Perl
\x{B055}
PHP
\x{B055}
Ruby
\u{B055}
Rust
\u{B055}
Go
\uB055

Web

CSS
\00B055
HtmlDecimal
끕
HtmlHexadecimal
끕
Url
%EB%81%95

Code

MD5
5d0086de58f997ec6334fd6d6df13bcd
Sha1
24c35d2906cb6ef5c27774f8255b0fecfac1a46c
Base64
64GV

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB055';
console.log(char);  // Output: 끕

Java:

char c = '\uB055';
System.out.println(c);  // Output: 끕

JSON:

{"text": "\uB055"}  // Value: 끕

Python:

char = '\uB055'
print(char)  # Output: 끕

Perl:

my $char = "\x{B055}";
print $char;  # Output: 끕

PHP:

$char = "\x{B055}";
echo $char;  // Output: 끕

Ruby:

char = "\u{B055}"
puts char  # Output: 끕

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45141;</p>  <!-- Display: 끕 -->

HTML Hexadecimal:

<p>HTML hex: &#xB055;</p>  <!-- Display: 끕 -->

URL Encoding:

// 끕 URL encoding
https://unicodefinder.com/search.php?query=%EB%81%95

Encodings

MD5:

5d0086de58f997ec6334fd6d6df13bcd

SHA1:

24c35d2906cb6ef5c27774f8255b0fecfac1a46c

Base64:

64GV