Unicode Finder

"報" U+5831(CJK UNIFIED IDEOGRAPH-5831)

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

Programming

C
\u5831
JavaScript
\u5831
Java
\u5831
Json
\u5831
Python
\u5831
Perl
\x{5831}
PHP
\x{5831}
Ruby
\u{5831}
Rust
\u{5831}
Go
\u5831

Web

CSS
\005831
HtmlDecimal
報
HtmlHexadecimal
報
Url
%E5%A0%B1

Code

MD5
3cf68b85ab7acd28796d719c6d470843
Sha1
7c155bc560d086a79af89c9b117ae17bbbfe73ed
Base64
5aCx

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

Programming Languages

C:

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

JavaScript:

const char = '\u5831';
console.log(char);  // Output: 報

Java:

char c = '\u5831';
System.out.println(c);  // Output: 報

JSON:

{"text": "\u5831"}  // Value: 報

Python:

char = '\u5831'
print(char)  # Output: 報

Perl:

my $char = "\x{5831}";
print $char;  # Output: 報

PHP:

$char = "\x{5831}";
echo $char;  // Output: 報

Ruby:

char = "\u{5831}"
puts char  # Output: 報

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005831";  /* Display: 報 */
}

HTML Decimal:

<p>HTML decimal: &#22577;</p>  <!-- Display: 報 -->

HTML Hexadecimal:

<p>HTML hex: &#x5831;</p>  <!-- Display: 報 -->

URL Encoding:

// 報 URL encoding
https://unicodefinder.com/search.php?query=%E5%A0%B1

Encodings

MD5:

3cf68b85ab7acd28796d719c6d470843

SHA1:

7c155bc560d086a79af89c9b117ae17bbbfe73ed

Base64:

5aCx