Unicode Finder

"奣" U+5963(CJK UNIFIED IDEOGRAPH-5963)

U+5963
ब्लॉक का नाम
CJK Unified Ideographs
नाम
CJK UNIFIED IDEOGRAPH-5963

Programming

C
\u5963
JavaScript
\u5963
Java
\u5963
Json
\u5963
Python
\u5963
Perl
\x{5963}
PHP
\x{5963}
Ruby
\u{5963}
Rust
\u{5963}
Go
\u5963

Web

CSS
\005963
HtmlDecimal
奣
HtmlHexadecimal
奣
Url
%E5%A5%A3

Code

MD5
d7fb8e7ce81153908cd37d1aed229d12
Sha1
d3677ebdad9fd1f21fb0d2b7dd3e33743ad39b75
Base64
5aWj

उपयोग के उदाहरण

Programming Languages

C:

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

JavaScript:

const char = '\u5963';
console.log(char);  // Output: 奣

Java:

char c = '\u5963';
System.out.println(c);  // Output: 奣

JSON:

{"text": "\u5963"}  // Value: 奣

Python:

char = '\u5963'
print(char)  # Output: 奣

Perl:

my $char = "\x{5963}";
print $char;  # Output: 奣

PHP:

$char = "\x{5963}";
echo $char;  // Output: 奣

Ruby:

char = "\u{5963}"
puts char  # Output: 奣

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005963";  /* Display: 奣 */
}

HTML Decimal:

<p>HTML decimal: &#22883;</p>  <!-- Display: 奣 -->

HTML Hexadecimal:

<p>HTML hex: &#x5963;</p>  <!-- Display: 奣 -->

URL Encoding:

// 奣 URL encoding
https://unicodefinder.com/search.php?query=%E5%A5%A3

Encodings

MD5:

d7fb8e7ce81153908cd37d1aed229d12

SHA1:

d3677ebdad9fd1f21fb0d2b7dd3e33743ad39b75

Base64:

5aWj