Unicode Finder

"겖" U+AC96(HANGUL SYLLABLE GELM)

U+AC96
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GELM

Programming

C
\uAC96
JavaScript
\uAC96
Java
\uAC96
Json
\uAC96
Python
\uAC96
Perl
\x{AC96}
PHP
\x{AC96}
Ruby
\u{AC96}
Rust
\u{AC96}
Go
\uAC96

Web

CSS
\00AC96
HtmlDecimal
겖
HtmlHexadecimal
겖
Url
%EA%B2%96

Code

MD5
15a52973e94b4c3426cb1c282292020d
Sha1
d404165606b0a202a8787098a60568e0fd6d62b3
Base64
6rKW

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAC96';
console.log(char);  // Output: 겖

Java:

char c = '\uAC96';
System.out.println(c);  // Output: 겖

JSON:

{"text": "\uAC96"}  // Value: 겖

Python:

char = '\uAC96'
print(char)  # Output: 겖

Perl:

my $char = "\x{AC96}";
print $char;  # Output: 겖

PHP:

$char = "\x{AC96}";
echo $char;  // Output: 겖

Ruby:

char = "\u{AC96}"
puts char  # Output: 겖

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44182;</p>  <!-- Display: 겖 -->

HTML Hexadecimal:

<p>HTML hex: &#xAC96;</p>  <!-- Display: 겖 -->

URL Encoding:

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

Encodings

MD5:

15a52973e94b4c3426cb1c282292020d

SHA1:

d404165606b0a202a8787098a60568e0fd6d62b3

Base64:

6rKW