Unicode Finder

"ᄿ" U+113F(HANGUL CHOSEONG CEONGCHIEUMSSANGSIOS)

U+113F
Nume Bloc
Hangul Jamo
Nume
HANGUL CHOSEONG CEONGCHIEUMSSANGSIOS

Programming

C
\u113F
JavaScript
\u113F
Java
\u113F
Json
\u113F
Python
\u113F
Perl
\x{113F}
PHP
\x{113F}
Ruby
\u{113F}
Rust
\u{113F}
Go
\u113F

Web

CSS
\00113F
HtmlDecimal
ᄿ
HtmlHexadecimal
ᄿ
Url
%E1%84%BF

Code

MD5
64483e6a3ac34ccc595d3f5928d92377
Sha1
f3ffecc759dc2d260f23bd8e695b5e3dd7208022
Base64
4YS/

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u113F';
console.log(char);  // Output: ᄿ

Java:

char c = '\u113F';
System.out.println(c);  // Output: ᄿ

JSON:

{"text": "\u113F"}  // Value: ᄿ

Python:

char = '\u113F'
print(char)  # Output: ᄿ

Perl:

my $char = "\x{113F}";
print $char;  # Output: ᄿ

PHP:

$char = "\x{113F}";
echo $char;  // Output: ᄿ

Ruby:

char = "\u{113F}"
puts char  # Output: ᄿ

Rust:

let c = '\u{113F}';
println!("{}", c);  // Output: ᄿ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00113F";  /* Display: ᄿ */
}

HTML Decimal:

<p>HTML decimal: &#4415;</p>  <!-- Display: ᄿ -->

HTML Hexadecimal:

<p>HTML hex: &#x113F;</p>  <!-- Display: ᄿ -->

URL Encoding:

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

Encodings

MD5:

64483e6a3ac34ccc595d3f5928d92377

SHA1:

f3ffecc759dc2d260f23bd8e695b5e3dd7208022

Base64:

4YS/