Unicode Finder

"갇" U+AC07(HANGUL SYLLABLE GAD)

U+AC07
ブロック名
Hangul Syllables
名前
HANGUL SYLLABLE GAD

Programming

C
\uAC07
JavaScript
\uAC07
Java
\uAC07
Json
\uAC07
Python
\uAC07
Perl
\x{AC07}
PHP
\x{AC07}
Ruby
\u{AC07}
Rust
\u{AC07}
Go
\uAC07

Web

CSS
\00AC07
HtmlDecimal
갇
HtmlHexadecimal
갇
Url
%EA%B0%87

Code

MD5
eb69d0485fdcac5f83147548287dc3d3
Sha1
edf708421ea3ce9cef4f4da1545d273c871bc6a3
Base64
6rCH

使用例

Programming Languages

C:

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

JavaScript:

const char = '\uAC07';
console.log(char);  // Output: 갇

Java:

char c = '\uAC07';
System.out.println(c);  // Output: 갇

JSON:

{"text": "\uAC07"}  // Value: 갇

Python:

char = '\uAC07'
print(char)  # Output: 갇

Perl:

my $char = "\x{AC07}";
print $char;  # Output: 갇

PHP:

$char = "\x{AC07}";
echo $char;  // Output: 갇

Ruby:

char = "\u{AC07}"
puts char  # Output: 갇

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#44039;</p>  <!-- Display: 갇 -->

HTML Hexadecimal:

<p>HTML hex: &#xAC07;</p>  <!-- Display: 갇 -->

URL Encoding:

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

Encodings

MD5:

eb69d0485fdcac5f83147548287dc3d3

SHA1:

edf708421ea3ce9cef4f4da1545d273c871bc6a3

Base64:

6rCH