Unicode Finder

"奛" U+595B(CJK UNIFIED IDEOGRAPH-595B)

U+595B
ব্লক নাম
CJK Unified Ideographs
নাম
CJK UNIFIED IDEOGRAPH-595B

Programming

C
\u595B
JavaScript
\u595B
Java
\u595B
Json
\u595B
Python
\u595B
Perl
\x{595B}
PHP
\x{595B}
Ruby
\u{595B}
Rust
\u{595B}
Go
\u595B

Web

CSS
\00595B
HtmlDecimal
奛
HtmlHexadecimal
奛
Url
%E5%A5%9B

Code

MD5
a21d8a9241ac381dace3d4d0500b6f5d
Sha1
c1c53a28f256834e5d6e522dc56c492fa4dc1f42
Base64
5aWb

ব্যবহারের উদাহরণ

Programming Languages

C:

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

JavaScript:

const char = '\u595B';
console.log(char);  // Output: 奛

Java:

char c = '\u595B';
System.out.println(c);  // Output: 奛

JSON:

{"text": "\u595B"}  // Value: 奛

Python:

char = '\u595B'
print(char)  # Output: 奛

Perl:

my $char = "\x{595B}";
print $char;  # Output: 奛

PHP:

$char = "\x{595B}";
echo $char;  // Output: 奛

Ruby:

char = "\u{595B}"
puts char  # Output: 奛

Rust:

let c = '\u{595B}';
println!("{}", c);  // Output: 奛

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00595B";  /* Display: 奛 */
}

HTML Decimal:

<p>HTML decimal: &#22875;</p>  <!-- Display: 奛 -->

HTML Hexadecimal:

<p>HTML hex: &#x595B;</p>  <!-- Display: 奛 -->

URL Encoding:

// 奛 URL encoding
https://unicodefinder.com/search.php?query=%E5%A5%9B

Encodings

MD5:

a21d8a9241ac381dace3d4d0500b6f5d

SHA1:

c1c53a28f256834e5d6e522dc56c492fa4dc1f42

Base64:

5aWb