Unicode Finder

"ᝓ" U+1753(BUHID VOWEL SIGN U)

U+1753
ブロック名
Buhid
名前
BUHID VOWEL SIGN U

Programming

C
\u1753
JavaScript
\u1753
Java
\u1753
Json
\u1753
Python
\u1753
Perl
\x{1753}
PHP
\x{1753}
Ruby
\u{1753}
Rust
\u{1753}
Go
\u1753

Web

CSS
\001753
HtmlDecimal
ᝓ
HtmlHexadecimal
ᝓ
Url
%E1%9D%93

Code

MD5
fe10da2eb05789bd6e4f7f71eb92c414
Sha1
6f5df40bbaeb8af2d4d55ef0a32722418159b97a
Base64
4Z2T

使用例

Programming Languages

C:

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

JavaScript:

const char = '\u1753';
console.log(char);  // Output: ᝓ

Java:

char c = '\u1753';
System.out.println(c);  // Output: ᝓ

JSON:

{"text": "\u1753"}  // Value: ᝓ

Python:

char = '\u1753'
print(char)  # Output: ᝓ

Perl:

my $char = "\x{1753}";
print $char;  # Output: ᝓ

PHP:

$char = "\x{1753}";
echo $char;  // Output: ᝓ

Ruby:

char = "\u{1753}"
puts char  # Output: ᝓ

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\001753";  /* Display: ᝓ */
}

HTML Decimal:

<p>HTML decimal: &#5971;</p>  <!-- Display: ᝓ -->

HTML Hexadecimal:

<p>HTML hex: &#x1753;</p>  <!-- Display: ᝓ -->

URL Encoding:

// ᝓ URL encoding
https://unicodefinder.com/search.php?query=%E1%9D%93

Encodings

MD5:

fe10da2eb05789bd6e4f7f71eb92c414

SHA1:

6f5df40bbaeb8af2d4d55ef0a32722418159b97a

Base64:

4Z2T