Unicode Finder

"끁" U+B041(HANGUL SYLLABLE GGYUT)

U+B041
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GGYUT

Programming

C
\uB041
JavaScript
\uB041
Java
\uB041
Json
\uB041
Python
\uB041
Perl
\x{B041}
PHP
\x{B041}
Ruby
\u{B041}
Rust
\u{B041}
Go
\uB041

Web

CSS
\00B041
HtmlDecimal
끁
HtmlHexadecimal
끁
Url
%EB%81%81

Code

MD5
434488fcc41168981051621d9e5d396c
Sha1
8b17e3a1b45a8ffbaae24e2d373769eac6361d98
Base64
64GB

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uB041';
console.log(char);  // Output: 끁

Java:

char c = '\uB041';
System.out.println(c);  // Output: 끁

JSON:

{"text": "\uB041"}  // Value: 끁

Python:

char = '\uB041'
print(char)  # Output: 끁

Perl:

my $char = "\x{B041}";
print $char;  # Output: 끁

PHP:

$char = "\x{B041}";
echo $char;  // Output: 끁

Ruby:

char = "\u{B041}"
puts char  # Output: 끁

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#45121;</p>  <!-- Display: 끁 -->

HTML Hexadecimal:

<p>HTML hex: &#xB041;</p>  <!-- Display: 끁 -->

URL Encoding:

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

Encodings

MD5:

434488fcc41168981051621d9e5d396c

SHA1:

8b17e3a1b45a8ffbaae24e2d373769eac6361d98

Base64:

64GB