Unicode Finder

"ᆖ" U+1196(HANGUL JUNGSEONG EU-EU)

U+1196
Nome do Bloco
Hangul Jamo
Nome
HANGUL JUNGSEONG EU-EU

Programming

C
\u1196
JavaScript
\u1196
Java
\u1196
Json
\u1196
Python
\u1196
Perl
\x{1196}
PHP
\x{1196}
Ruby
\u{1196}
Rust
\u{1196}
Go
\u1196

Web

CSS
\001196
HtmlDecimal
ᆖ
HtmlHexadecimal
ᆖ
Url
%E1%86%96

Code

MD5
ddcf9828206518cbe73e4fd65c272995
Sha1
a384bf238a1401af51fabe99076d6cb55a0dc06f
Base64
4YaW

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u1196';
console.log(char);  // Output: ᆖ

Java:

char c = '\u1196';
System.out.println(c);  // Output: ᆖ

JSON:

{"text": "\u1196"}  // Value: ᆖ

Python:

char = '\u1196'
print(char)  # Output: ᆖ

Perl:

my $char = "\x{1196}";
print $char;  # Output: ᆖ

PHP:

$char = "\x{1196}";
echo $char;  // Output: ᆖ

Ruby:

char = "\u{1196}"
puts char  # Output: ᆖ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001196";  /* Display: ᆖ */
}

HTML Decimal:

<p>HTML decimal: &#4502;</p>  <!-- Display: ᆖ -->

HTML Hexadecimal:

<p>HTML hex: &#x1196;</p>  <!-- Display: ᆖ -->

URL Encoding:

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

Encodings

MD5:

ddcf9828206518cbe73e4fd65c272995

SHA1:

a384bf238a1401af51fabe99076d6cb55a0dc06f

Base64:

4YaW