Unicode Finder

"夥" U+5925(CJK UNIFIED IDEOGRAPH-5925)

U+5925
Nome do Bloco
CJK Unified Ideographs
Nome
CJK UNIFIED IDEOGRAPH-5925

Programming

C
\u5925
JavaScript
\u5925
Java
\u5925
Json
\u5925
Python
\u5925
Perl
\x{5925}
PHP
\x{5925}
Ruby
\u{5925}
Rust
\u{5925}
Go
\u5925

Web

CSS
\005925
HtmlDecimal
夥
HtmlHexadecimal
夥
Url
%E5%A4%A5

Code

MD5
526ca60a5ff1f0a5b6b7eca2a16c0494
Sha1
c302452b71b1346800cf755acd5a312f0594a49c
Base64
5aSl

Exemplos de Uso

Programming Languages

C:

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

JavaScript:

const char = '\u5925';
console.log(char);  // Output: 夥

Java:

char c = '\u5925';
System.out.println(c);  // Output: 夥

JSON:

{"text": "\u5925"}  // Value: 夥

Python:

char = '\u5925'
print(char)  # Output: 夥

Perl:

my $char = "\x{5925}";
print $char;  # Output: 夥

PHP:

$char = "\x{5925}";
echo $char;  // Output: 夥

Ruby:

char = "\u{5925}"
puts char  # Output: 夥

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005925";  /* Display: 夥 */
}

HTML Decimal:

<p>HTML decimal: &#22821;</p>  <!-- Display: 夥 -->

HTML Hexadecimal:

<p>HTML hex: &#x5925;</p>  <!-- Display: 夥 -->

URL Encoding:

// 夥 URL encoding
https://unicodefinder.com/search.php?query=%E5%A4%A5

Encodings

MD5:

526ca60a5ff1f0a5b6b7eca2a16c0494

SHA1:

c302452b71b1346800cf755acd5a312f0594a49c

Base64:

5aSl