Unicode Finder

"ᄥ" U+1125(HANGUL CHOSEONG PIEUP-SSANGSIOS)

U+1125
Bloknaam
Hangul Jamo
Naam
HANGUL CHOSEONG PIEUP-SSANGSIOS

Programming

C
\u1125
JavaScript
\u1125
Java
\u1125
Json
\u1125
Python
\u1125
Perl
\x{1125}
PHP
\x{1125}
Ruby
\u{1125}
Rust
\u{1125}
Go
\u1125

Web

CSS
\001125
HtmlDecimal
ᄥ
HtmlHexadecimal
ᄥ
Url
%E1%84%A5

Code

MD5
97fb7559d865654acc93df606d08546f
Sha1
88a9150f93fc358ee38fbd01fbf11f00adeeb45f
Base64
4YSl

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u1125';
console.log(char);  // Output: ᄥ

Java:

char c = '\u1125';
System.out.println(c);  // Output: ᄥ

JSON:

{"text": "\u1125"}  // Value: ᄥ

Python:

char = '\u1125'
print(char)  # Output: ᄥ

Perl:

my $char = "\x{1125}";
print $char;  # Output: ᄥ

PHP:

$char = "\x{1125}";
echo $char;  // Output: ᄥ

Ruby:

char = "\u{1125}"
puts char  # Output: ᄥ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001125";  /* Display: ᄥ */
}

HTML Decimal:

<p>HTML decimal: &#4389;</p>  <!-- Display: ᄥ -->

HTML Hexadecimal:

<p>HTML hex: &#x1125;</p>  <!-- Display: ᄥ -->

URL Encoding:

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

Encodings

MD5:

97fb7559d865654acc93df606d08546f

SHA1:

88a9150f93fc358ee38fbd01fbf11f00adeeb45f

Base64:

4YSl