Unicode Finder

"嫁" U+5AC1(CJK UNIFIED IDEOGRAPH-5AC1)

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

Programming

C
\u5AC1
JavaScript
\u5AC1
Java
\u5AC1
Json
\u5AC1
Python
\u5AC1
Perl
\x{5AC1}
PHP
\x{5AC1}
Ruby
\u{5AC1}
Rust
\u{5AC1}
Go
\u5AC1

Web

CSS
\005AC1
HtmlDecimal
嫁
HtmlHexadecimal
嫁
Url
%E5%AB%81

Code

MD5
d09afd958e5c4b7bb2bf5c3d7568b202
Sha1
1da263320b9708ef92442affe9ffbfc392295b3c
Base64
5auB

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

Programming Languages

C:

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

JavaScript:

const char = '\u5AC1';
console.log(char);  // Output: 嫁

Java:

char c = '\u5AC1';
System.out.println(c);  // Output: 嫁

JSON:

{"text": "\u5AC1"}  // Value: 嫁

Python:

char = '\u5AC1'
print(char)  # Output: 嫁

Perl:

my $char = "\x{5AC1}";
print $char;  # Output: 嫁

PHP:

$char = "\x{5AC1}";
echo $char;  // Output: 嫁

Ruby:

char = "\u{5AC1}"
puts char  # Output: 嫁

Rust:

let c = '\u{5AC1}';
println!("{}", c);  // Output: 嫁

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005AC1";  /* Display: 嫁 */
}

HTML Decimal:

<p>HTML decimal: &#23233;</p>  <!-- Display: 嫁 -->

HTML Hexadecimal:

<p>HTML hex: &#x5AC1;</p>  <!-- Display: 嫁 -->

URL Encoding:

// 嫁 URL encoding
https://unicodefinder.com/search.php?query=%E5%AB%81

Encodings

MD5:

d09afd958e5c4b7bb2bf5c3d7568b202

SHA1:

1da263320b9708ef92442affe9ffbfc392295b3c

Base64:

5auB