Unicode Finder

"궔" U+AD94(HANGUL SYLLABLE GWEOLS)

U+AD94
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GWEOLS

Programming

C
\uAD94
JavaScript
\uAD94
Java
\uAD94
Json
\uAD94
Python
\uAD94
Perl
\x{AD94}
PHP
\x{AD94}
Ruby
\u{AD94}
Rust
\u{AD94}
Go
\uAD94

Web

CSS
\00AD94
HtmlDecimal
궔
HtmlHexadecimal
궔
Url
%EA%B6%94

Code

MD5
bb7c127f5de98990b47812658e47d71a
Sha1
b55ad931c853e2ddc9313a3f992f3c4a8f82d3ae
Base64
6raU

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAD94';
console.log(char);  // Output: 궔

Java:

char c = '\uAD94';
System.out.println(c);  // Output: 궔

JSON:

{"text": "\uAD94"}  // Value: 궔

Python:

char = '\uAD94'
print(char)  # Output: 궔

Perl:

my $char = "\x{AD94}";
print $char;  # Output: 궔

PHP:

$char = "\x{AD94}";
echo $char;  // Output: 궔

Ruby:

char = "\u{AD94}"
puts char  # Output: 궔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44436;</p>  <!-- Display: 궔 -->

HTML Hexadecimal:

<p>HTML hex: &#xAD94;</p>  <!-- Display: 궔 -->

URL Encoding:

// 궔 URL encoding
https://unicodefinder.com/search.php?query=%EA%B6%94

Encodings

MD5:

bb7c127f5de98990b47812658e47d71a

SHA1:

b55ad931c853e2ddc9313a3f992f3c4a8f82d3ae

Base64:

6raU