Unicode Finder

"귂" U+ADC2(HANGUL SYLLABLE GWIGG)

U+ADC2
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GWIGG

Programming

C
\uADC2
JavaScript
\uADC2
Java
\uADC2
Json
\uADC2
Python
\uADC2
Perl
\x{ADC2}
PHP
\x{ADC2}
Ruby
\u{ADC2}
Rust
\u{ADC2}
Go
\uADC2

Web

CSS
\00ADC2
HtmlDecimal
귂
HtmlHexadecimal
귂
Url
%EA%B7%82

Code

MD5
35cb2b22da352fb5a335b47440d6a78a
Sha1
91932dfc8182934aa77dff7a1595522c926f407b
Base64
6reC

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uADC2';
console.log(char);  // Output: 귂

Java:

char c = '\uADC2';
System.out.println(c);  // Output: 귂

JSON:

{"text": "\uADC2"}  // Value: 귂

Python:

char = '\uADC2'
print(char)  # Output: 귂

Perl:

my $char = "\x{ADC2}";
print $char;  # Output: 귂

PHP:

$char = "\x{ADC2}";
echo $char;  // Output: 귂

Ruby:

char = "\u{ADC2}"
puts char  # Output: 귂

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44482;</p>  <!-- Display: 귂 -->

HTML Hexadecimal:

<p>HTML hex: &#xADC2;</p>  <!-- Display: 귂 -->

URL Encoding:

// 귂 URL encoding
https://unicodefinder.com/search.php?query=%EA%B7%82

Encodings

MD5:

35cb2b22da352fb5a335b47440d6a78a

SHA1:

91932dfc8182934aa77dff7a1595522c926f407b

Base64:

6reC