Unicode Finder

"垃" U+5783(CJK UNIFIED IDEOGRAPH-5783)

U+5783
Blocknamn
CJK Unified Ideographs
Namn
CJK UNIFIED IDEOGRAPH-5783

Programming

C
\u5783
JavaScript
\u5783
Java
\u5783
Json
\u5783
Python
\u5783
Perl
\x{5783}
PHP
\x{5783}
Ruby
\u{5783}
Rust
\u{5783}
Go
\u5783

Web

CSS
\005783
HtmlDecimal
垃
HtmlHexadecimal
垃
Url
%E5%9E%83

Code

MD5
905ff223553d9b8122ce0b4e93f9fae8
Sha1
0eb3bd17eee9ea1e60b5bb341aed01ba84baf06e
Base64
5Z6D

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u5783';
console.log(char);  // Output: 垃

Java:

char c = '\u5783';
System.out.println(c);  // Output: 垃

JSON:

{"text": "\u5783"}  // Value: 垃

Python:

char = '\u5783'
print(char)  # Output: 垃

Perl:

my $char = "\x{5783}";
print $char;  # Output: 垃

PHP:

$char = "\x{5783}";
echo $char;  // Output: 垃

Ruby:

char = "\u{5783}"
puts char  # Output: 垃

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005783";  /* Display: 垃 */
}

HTML Decimal:

<p>HTML decimal: &#22403;</p>  <!-- Display: 垃 -->

HTML Hexadecimal:

<p>HTML hex: &#x5783;</p>  <!-- Display: 垃 -->

URL Encoding:

// 垃 URL encoding
https://unicodefinder.com/search.php?query=%E5%9E%83

Encodings

MD5:

905ff223553d9b8122ce0b4e93f9fae8

SHA1:

0eb3bd17eee9ea1e60b5bb341aed01ba84baf06e

Base64:

5Z6D