Unicode Finder

"塳" U+5873(CJK UNIFIED IDEOGRAPH-5873)

U+5873
Nume Bloc
CJK Unified Ideographs
Nume
CJK UNIFIED IDEOGRAPH-5873

Programming

C
\u5873
JavaScript
\u5873
Java
\u5873
Json
\u5873
Python
\u5873
Perl
\x{5873}
PHP
\x{5873}
Ruby
\u{5873}
Rust
\u{5873}
Go
\u5873

Web

CSS
\005873
HtmlDecimal
塳
HtmlHexadecimal
塳
Url
%E5%A1%B3

Code

MD5
60960c41df7c8b44fcead1fa7f6df053
Sha1
65a60abe5f8493786324473184cedd814b5978db
Base64
5aGz

Exemple de Utilizare

Programming Languages

C:

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

JavaScript:

const char = '\u5873';
console.log(char);  // Output: 塳

Java:

char c = '\u5873';
System.out.println(c);  // Output: 塳

JSON:

{"text": "\u5873"}  // Value: 塳

Python:

char = '\u5873'
print(char)  # Output: 塳

Perl:

my $char = "\x{5873}";
print $char;  # Output: 塳

PHP:

$char = "\x{5873}";
echo $char;  // Output: 塳

Ruby:

char = "\u{5873}"
puts char  # Output: 塳

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005873";  /* Display: 塳 */
}

HTML Decimal:

<p>HTML decimal: &#22643;</p>  <!-- Display: 塳 -->

HTML Hexadecimal:

<p>HTML hex: &#x5873;</p>  <!-- Display: 塳 -->

URL Encoding:

// 塳 URL encoding
https://unicodefinder.com/search.php?query=%E5%A1%B3

Encodings

MD5:

60960c41df7c8b44fcead1fa7f6df053

SHA1:

65a60abe5f8493786324473184cedd814b5978db

Base64:

5aGz