Unicode Finder

"괦" U+AD26(HANGUL SYLLABLE GWAELP)

U+AD26
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GWAELP

Programming

C
\uAD26
JavaScript
\uAD26
Java
\uAD26
Json
\uAD26
Python
\uAD26
Perl
\x{AD26}
PHP
\x{AD26}
Ruby
\u{AD26}
Rust
\u{AD26}
Go
\uAD26

Web

CSS
\00AD26
HtmlDecimal
괦
HtmlHexadecimal
괦
Url
%EA%B4%A6

Code

MD5
34f9796f86002f6e84dd9c884b6c521a
Sha1
ab1df63e9435c4025bf0d0748918134b3de1a5d7
Base64
6rSm

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAD26';
console.log(char);  // Output: 괦

Java:

char c = '\uAD26';
System.out.println(c);  // Output: 괦

JSON:

{"text": "\uAD26"}  // Value: 괦

Python:

char = '\uAD26'
print(char)  # Output: 괦

Perl:

my $char = "\x{AD26}";
print $char;  # Output: 괦

PHP:

$char = "\x{AD26}";
echo $char;  // Output: 괦

Ruby:

char = "\u{AD26}"
puts char  # Output: 괦

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44326;</p>  <!-- Display: 괦 -->

HTML Hexadecimal:

<p>HTML hex: &#xAD26;</p>  <!-- Display: 괦 -->

URL Encoding:

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

Encodings

MD5:

34f9796f86002f6e84dd9c884b6c521a

SHA1:

ab1df63e9435c4025bf0d0748918134b3de1a5d7

Base64:

6rSm