Unicode Finder

"괧" U+AD27(HANGUL SYLLABLE GWAELH)

U+AD27
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GWAELH

Programming

C
\uAD27
JavaScript
\uAD27
Java
\uAD27
Json
\uAD27
Python
\uAD27
Perl
\x{AD27}
PHP
\x{AD27}
Ruby
\u{AD27}
Rust
\u{AD27}
Go
\uAD27

Web

CSS
\00AD27
HtmlDecimal
괧
HtmlHexadecimal
괧
Url
%EA%B4%A7

Code

MD5
d0f5a90ebe365f138b7f34835023b36e
Sha1
f54e35dd35891fedfd1a96e928897a9d5f7db65a
Base64
6rSn

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAD27';
console.log(char);  // Output: 괧

Java:

char c = '\uAD27';
System.out.println(c);  // Output: 괧

JSON:

{"text": "\uAD27"}  // Value: 괧

Python:

char = '\uAD27'
print(char)  # Output: 괧

Perl:

my $char = "\x{AD27}";
print $char;  # Output: 괧

PHP:

$char = "\x{AD27}";
echo $char;  // Output: 괧

Ruby:

char = "\u{AD27}"
puts char  # Output: 괧

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44327;</p>  <!-- Display: 괧 -->

HTML Hexadecimal:

<p>HTML hex: &#xAD27;</p>  <!-- Display: 괧 -->

URL Encoding:

// 괧 URL encoding
https://unicodefinder.com/search.php?query=%EA%B4%A7

Encodings

MD5:

d0f5a90ebe365f138b7f34835023b36e

SHA1:

f54e35dd35891fedfd1a96e928897a9d5f7db65a

Base64:

6rSn