Unicode Finder

"겑" U+AC91(HANGUL SYLLABLE GENJ)

U+AC91
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GENJ

Programming

C
\uAC91
JavaScript
\uAC91
Java
\uAC91
Json
\uAC91
Python
\uAC91
Perl
\x{AC91}
PHP
\x{AC91}
Ruby
\u{AC91}
Rust
\u{AC91}
Go
\uAC91

Web

CSS
\00AC91
HtmlDecimal
겑
HtmlHexadecimal
겑
Url
%EA%B2%91

Code

MD5
138aa85d5c0324a7f4ee32573b823cb1
Sha1
0e6195aadd43fe8130770edc48fda09f3e0dbc84
Base64
6rKR

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAC91';
console.log(char);  // Output: 겑

Java:

char c = '\uAC91';
System.out.println(c);  // Output: 겑

JSON:

{"text": "\uAC91"}  // Value: 겑

Python:

char = '\uAC91'
print(char)  # Output: 겑

Perl:

my $char = "\x{AC91}";
print $char;  # Output: 겑

PHP:

$char = "\x{AC91}";
echo $char;  // Output: 겑

Ruby:

char = "\u{AC91}"
puts char  # Output: 겑

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44177;</p>  <!-- Display: 겑 -->

HTML Hexadecimal:

<p>HTML hex: &#xAC91;</p>  <!-- Display: 겑 -->

URL Encoding:

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

Encodings

MD5:

138aa85d5c0324a7f4ee32573b823cb1

SHA1:

0e6195aadd43fe8130770edc48fda09f3e0dbc84

Base64:

6rKR