Unicode Finder

"ᆄ" U+1184(HANGUL JUNGSEONG YO-YA)

U+1184
Nome do Bloco
Hangul Jamo
Nome
HANGUL JUNGSEONG YO-YA

Programming

C
\u1184
JavaScript
\u1184
Java
\u1184
Json
\u1184
Python
\u1184
Perl
\x{1184}
PHP
\x{1184}
Ruby
\u{1184}
Rust
\u{1184}
Go
\u1184

Web

CSS
\001184
HtmlDecimal
ᆄ
HtmlHexadecimal
ᆄ
Url
%E1%86%84

Code

MD5
3622cb805cbea4d88923c4ddf62fe918
Sha1
06d074c70008fa13250ad832af1dbcc5d00f053f
Base64
4YaE

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1184';
console.log(char);  // Output: ᆄ

Java:

char c = '\u1184';
System.out.println(c);  // Output: ᆄ

JSON:

{"text": "\u1184"}  // Value: ᆄ

Python:

char = '\u1184'
print(char)  # Output: ᆄ

Perl:

my $char = "\x{1184}";
print $char;  # Output: ᆄ

PHP:

$char = "\x{1184}";
echo $char;  // Output: ᆄ

Ruby:

char = "\u{1184}"
puts char  # Output: ᆄ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001184";  /* Display: ᆄ */
}

HTML Decimal:

<p>HTML decimal: &#4484;</p>  <!-- Display: ᆄ -->

HTML Hexadecimal:

<p>HTML hex: &#x1184;</p>  <!-- Display: ᆄ -->

URL Encoding:

// ᆄ URL encoding
https://unicodefinder.com/search.php?query=%E1%86%84

Encodings

MD5:

3622cb805cbea4d88923c4ddf62fe918

SHA1:

06d074c70008fa13250ad832af1dbcc5d00f053f

Base64:

4YaE