Unicode Finder

"겘" U+AC98(HANGUL SYLLABLE GELS)

U+AC98
블록 이름
Hangul Syllables
이름
HANGUL SYLLABLE GELS

Programming

C
\uAC98
JavaScript
\uAC98
Java
\uAC98
Json
\uAC98
Python
\uAC98
Perl
\x{AC98}
PHP
\x{AC98}
Ruby
\u{AC98}
Rust
\u{AC98}
Go
\uAC98

Web

CSS
\00AC98
HtmlDecimal
겘
HtmlHexadecimal
겘
Url
%EA%B2%98

Code

MD5
84a6ed5bd951cbc8f4ea0d9c50495b89
Sha1
9cf072b1088510ec6c82b79e22e0a111239d8928
Base64
6rKY

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\uAC98';
console.log(char);  // Output: 겘

Java:

char c = '\uAC98';
System.out.println(c);  // Output: 겘

JSON:

{"text": "\uAC98"}  // Value: 겘

Python:

char = '\uAC98'
print(char)  # Output: 겘

Perl:

my $char = "\x{AC98}";
print $char;  # Output: 겘

PHP:

$char = "\x{AC98}";
echo $char;  // Output: 겘

Ruby:

char = "\u{AC98}"
puts char  # Output: 겘

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44184;</p>  <!-- Display: 겘 -->

HTML Hexadecimal:

<p>HTML hex: &#xAC98;</p>  <!-- Display: 겘 -->

URL Encoding:

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

Encodings

MD5:

84a6ed5bd951cbc8f4ea0d9c50495b89

SHA1:

9cf072b1088510ec6c82b79e22e0a111239d8928

Base64:

6rKY