Unicode Finder

"겔" U+AC94(HANGUL SYLLABLE GEL)

U+AC94
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GEL

Programming

C
\uAC94
JavaScript
\uAC94
Java
\uAC94
Json
\uAC94
Python
\uAC94
Perl
\x{AC94}
PHP
\x{AC94}
Ruby
\u{AC94}
Rust
\u{AC94}
Go
\uAC94

Web

CSS
\00AC94
HtmlDecimal
겔
HtmlHexadecimal
겔
Url
%EA%B2%94

Code

MD5
31569a69ef436a32df0a4b99f612ca01
Sha1
794e1cedda3b1a5cbd5f7a229a7d4d4dbf65a996
Base64
6rKU

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAC94';
console.log(char);  // Output: 겔

Java:

char c = '\uAC94';
System.out.println(c);  // Output: 겔

JSON:

{"text": "\uAC94"}  // Value: 겔

Python:

char = '\uAC94'
print(char)  # Output: 겔

Perl:

my $char = "\x{AC94}";
print $char;  # Output: 겔

PHP:

$char = "\x{AC94}";
echo $char;  // Output: 겔

Ruby:

char = "\u{AC94}"
puts char  # Output: 겔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44180;</p>  <!-- Display: 겔 -->

HTML Hexadecimal:

<p>HTML hex: &#xAC94;</p>  <!-- Display: 겔 -->

URL Encoding:

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

Encodings

MD5:

31569a69ef436a32df0a4b99f612ca01

SHA1:

794e1cedda3b1a5cbd5f7a229a7d4d4dbf65a996

Base64:

6rKU