Unicode Finder

"堼" U+583C(CJK UNIFIED IDEOGRAPH-583C)

U+583C
Blocknamn
CJK Unified Ideographs
Namn
CJK UNIFIED IDEOGRAPH-583C

Programming

C
\u583C
JavaScript
\u583C
Java
\u583C
Json
\u583C
Python
\u583C
Perl
\x{583C}
PHP
\x{583C}
Ruby
\u{583C}
Rust
\u{583C}
Go
\u583C

Web

CSS
\00583C
HtmlDecimal
堼
HtmlHexadecimal
堼
Url
%E5%A0%BC

Code

MD5
54d3ccad9aca4d7a8e2bd1366547d4a6
Sha1
e68ccd18a3efb55ddb9503a525decb72521b4a74
Base64
5aC8

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u583C';
console.log(char);  // Output: 堼

Java:

char c = '\u583C';
System.out.println(c);  // Output: 堼

JSON:

{"text": "\u583C"}  // Value: 堼

Python:

char = '\u583C'
print(char)  # Output: 堼

Perl:

my $char = "\x{583C}";
print $char;  # Output: 堼

PHP:

$char = "\x{583C}";
echo $char;  // Output: 堼

Ruby:

char = "\u{583C}"
puts char  # Output: 堼

Rust:

let c = '\u{583C}';
println!("{}", c);  // Output: 堼

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00583C";  /* Display: 堼 */
}

HTML Decimal:

<p>HTML decimal: &#22588;</p>  <!-- Display: 堼 -->

HTML Hexadecimal:

<p>HTML hex: &#x583C;</p>  <!-- Display: 堼 -->

URL Encoding:

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

Encodings

MD5:

54d3ccad9aca4d7a8e2bd1366547d4a6

SHA1:

e68ccd18a3efb55ddb9503a525decb72521b4a74

Base64:

5aC8