Unicode Finder

"겇" U+AC87(HANGUL SYLLABLE GEOC)

U+AC87
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GEOC

Programming

C
\uAC87
JavaScript
\uAC87
Java
\uAC87
Json
\uAC87
Python
\uAC87
Perl
\x{AC87}
PHP
\x{AC87}
Ruby
\u{AC87}
Rust
\u{AC87}
Go
\uAC87

Web

CSS
\00AC87
HtmlDecimal
겇
HtmlHexadecimal
겇
Url
%EA%B2%87

Code

MD5
3015e160056c3e8e0a57df8ebd73eaf7
Sha1
0d2950de0fb2c60832b953f2f120c243d71da286
Base64
6rKH

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAC87';
console.log(char);  // Output: 겇

Java:

char c = '\uAC87';
System.out.println(c);  // Output: 겇

JSON:

{"text": "\uAC87"}  // Value: 겇

Python:

char = '\uAC87'
print(char)  # Output: 겇

Perl:

my $char = "\x{AC87}";
print $char;  # Output: 겇

PHP:

$char = "\x{AC87}";
echo $char;  // Output: 겇

Ruby:

char = "\u{AC87}"
puts char  # Output: 겇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44167;</p>  <!-- Display: 겇 -->

HTML Hexadecimal:

<p>HTML hex: &#xAC87;</p>  <!-- Display: 겇 -->

URL Encoding:

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

Encodings

MD5:

3015e160056c3e8e0a57df8ebd73eaf7

SHA1:

0d2950de0fb2c60832b953f2f120c243d71da286

Base64:

6rKH