Unicode Finder

"귃" U+ADC3(HANGUL SYLLABLE GWIGS)

U+ADC3
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GWIGS

Programming

C
\uADC3
JavaScript
\uADC3
Java
\uADC3
Json
\uADC3
Python
\uADC3
Perl
\x{ADC3}
PHP
\x{ADC3}
Ruby
\u{ADC3}
Rust
\u{ADC3}
Go
\uADC3

Web

CSS
\00ADC3
HtmlDecimal
귃
HtmlHexadecimal
귃
Url
%EA%B7%83

Code

MD5
8aefd3eb83beee52e2dd2d8e508007d9
Sha1
9c1b08b63e46cfbfe328fdcb0a226de3d0d502d0
Base64
6reD

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uADC3';
console.log(char);  // Output: 귃

Java:

char c = '\uADC3';
System.out.println(c);  // Output: 귃

JSON:

{"text": "\uADC3"}  // Value: 귃

Python:

char = '\uADC3'
print(char)  # Output: 귃

Perl:

my $char = "\x{ADC3}";
print $char;  # Output: 귃

PHP:

$char = "\x{ADC3}";
echo $char;  // Output: 귃

Ruby:

char = "\u{ADC3}"
puts char  # Output: 귃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44483;</p>  <!-- Display: 귃 -->

HTML Hexadecimal:

<p>HTML hex: &#xADC3;</p>  <!-- Display: 귃 -->

URL Encoding:

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

Encodings

MD5:

8aefd3eb83beee52e2dd2d8e508007d9

SHA1:

9c1b08b63e46cfbfe328fdcb0a226de3d0d502d0

Base64:

6reD