Unicode Finder

"ᤒ" U+1912(LIMBU LETTER BA)

U+1912
Blocknamn
Limbu
Namn
LIMBU LETTER BA

Programming

C
\u1912
JavaScript
\u1912
Java
\u1912
Json
\u1912
Python
\u1912
Perl
\x{1912}
PHP
\x{1912}
Ruby
\u{1912}
Rust
\u{1912}
Go
\u1912

Web

CSS
\001912
HtmlDecimal
ᤒ
HtmlHexadecimal
ᤒ
Url
%E1%A4%92

Code

MD5
48530d9b087f3ee5be7d68004b0362d9
Sha1
58bd3ef7c077448f859737d2f6bafbf14f0bed1d
Base64
4aSS

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u1912';
console.log(char);  // Output: ᤒ

Java:

char c = '\u1912';
System.out.println(c);  // Output: ᤒ

JSON:

{"text": "\u1912"}  // Value: ᤒ

Python:

char = '\u1912'
print(char)  # Output: ᤒ

Perl:

my $char = "\x{1912}";
print $char;  # Output: ᤒ

PHP:

$char = "\x{1912}";
echo $char;  // Output: ᤒ

Ruby:

char = "\u{1912}"
puts char  # Output: ᤒ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001912";  /* Display: ᤒ */
}

HTML Decimal:

<p>HTML decimal: &#6418;</p>  <!-- Display: ᤒ -->

HTML Hexadecimal:

<p>HTML hex: &#x1912;</p>  <!-- Display: ᤒ -->

URL Encoding:

// ᤒ URL encoding
https://unicodefinder.com/search.php?query=%E1%A4%92

Encodings

MD5:

48530d9b087f3ee5be7d68004b0362d9

SHA1:

58bd3ef7c077448f859737d2f6bafbf14f0bed1d

Base64:

4aSS