Unicode Finder

"Ꮢ" U+13D2(CHEROKEE LETTER SV)

U+13D2
블록 이름
Cherokee
이름
CHEROKEE LETTER SV

Programming

C
\u13D2
JavaScript
\u13D2
Java
\u13D2
Json
\u13D2
Python
\u13D2
Perl
\x{13D2}
PHP
\x{13D2}
Ruby
\u{13D2}
Rust
\u{13D2}
Go
\u13D2

Web

CSS
\0013D2
HtmlDecimal
Ꮢ
HtmlHexadecimal
Ꮢ
Url
%E1%8F%92

Code

MD5
8d8056b655ff9e053dc4288b895399f2
Sha1
e288d877a61f4f478423b18af552dc6b1d841d5a
Base64
4Y+S

사용 예시

Programming Languages

C:

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

JavaScript:

const char = '\u13D2';
console.log(char);  // Output: Ꮢ

Java:

char c = '\u13D2';
System.out.println(c);  // Output: Ꮢ

JSON:

{"text": "\u13D2"}  // Value: Ꮢ

Python:

char = '\u13D2'
print(char)  # Output: Ꮢ

Perl:

my $char = "\x{13D2}";
print $char;  # Output: Ꮢ

PHP:

$char = "\x{13D2}";
echo $char;  // Output: Ꮢ

Ruby:

char = "\u{13D2}"
puts char  # Output: Ꮢ

Rust:

let c = '\u{13D2}';
println!("{}", c);  // Output: Ꮢ

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0013D2";  /* Display: Ꮢ */
}

HTML Decimal:

<p>HTML decimal: &#5074;</p>  <!-- Display: Ꮢ -->

HTML Hexadecimal:

<p>HTML hex: &#x13D2;</p>  <!-- Display: Ꮢ -->

URL Encoding:

// Ꮢ URL encoding
https://unicodefinder.com/search.php?query=%E1%8F%92

Encodings

MD5:

8d8056b655ff9e053dc4288b895399f2

SHA1:

e288d877a61f4f478423b18af552dc6b1d841d5a

Base64:

4Y+S