Unicode Finder

"堋" U+580B(CJK UNIFIED IDEOGRAPH-580B)

U+580B
اسم الكتلة
CJK Unified Ideographs
الاسم
CJK UNIFIED IDEOGRAPH-580B

Programming

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

Web

CSS
\00580B
HtmlDecimal
堋
HtmlHexadecimal
堋
Url
%E5%A0%8B

Code

MD5
35030635c08f73b7790177366288bfb2
Sha1
719d9da2302d0fafe604b5b2d8f43fd03957a43b
Base64
5aCL

أمثلة الاستخدام

Programming Languages

C:

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

JavaScript:

const char = '\u580B';
console.log(char);  // Output: 堋

Java:

char c = '\u580B';
System.out.println(c);  // Output: 堋

JSON:

{"text": "\u580B"}  // Value: 堋

Python:

char = '\u580B'
print(char)  # Output: 堋

Perl:

my $char = "\x{580B}";
print $char;  # Output: 堋

PHP:

$char = "\x{580B}";
echo $char;  // Output: 堋

Ruby:

char = "\u{580B}"
puts char  # Output: 堋

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#22539;</p>  <!-- Display: 堋 -->

HTML Hexadecimal:

<p>HTML hex: &#x580B;</p>  <!-- Display: 堋 -->

URL Encoding:

// 堋 URL encoding
https://unicodefinder.com/search.php?query=%E5%A0%8B

Encodings

MD5:

35030635c08f73b7790177366288bfb2

SHA1:

719d9da2302d0fafe604b5b2d8f43fd03957a43b

Base64:

5aCL