Unicode Finder

"끾" U+B07E(HANGUL SYLLABLE GGIGG)

U+B07E
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGIGG

Programming

C
\uB07E
JavaScript
\uB07E
Java
\uB07E
Json
\uB07E
Python
\uB07E
Perl
\x{B07E}
PHP
\x{B07E}
Ruby
\u{B07E}
Rust
\u{B07E}
Go
\uB07E

Web

CSS
\00B07E
HtmlDecimal
끾
HtmlHexadecimal
끾
Url
%EB%81%BE

Code

MD5
c05eb213736f67aeda434a5e747e5357
Sha1
46aa6548f23e787a74128915ed0a869c1573a27f
Base64
64G+

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB07E';
console.log(char);  // Output: 끾

Java:

char c = '\uB07E';
System.out.println(c);  // Output: 끾

JSON:

{"text": "\uB07E"}  // Value: 끾

Python:

char = '\uB07E'
print(char)  # Output: 끾

Perl:

my $char = "\x{B07E}";
print $char;  # Output: 끾

PHP:

$char = "\x{B07E}";
echo $char;  // Output: 끾

Ruby:

char = "\u{B07E}"
puts char  # Output: 끾

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45182;</p>  <!-- Display: 끾 -->

HTML Hexadecimal:

<p>HTML hex: &#xB07E;</p>  <!-- Display: 끾 -->

URL Encoding:

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

Encodings

MD5:

c05eb213736f67aeda434a5e747e5357

SHA1:

46aa6548f23e787a74128915ed0a869c1573a27f

Base64:

64G+