Unicode Finder

"塱" U+5871(CJK UNIFIED IDEOGRAPH-5871)

U+5871
Bloknaam
CJK Unified Ideographs
Naam
CJK UNIFIED IDEOGRAPH-5871

Programming

C
\u5871
JavaScript
\u5871
Java
\u5871
Json
\u5871
Python
\u5871
Perl
\x{5871}
PHP
\x{5871}
Ruby
\u{5871}
Rust
\u{5871}
Go
\u5871

Web

CSS
\005871
HtmlDecimal
塱
HtmlHexadecimal
塱
Url
%E5%A1%B1

Code

MD5
adfcbfcada4eb504ef4f7f09f6d95af8
Sha1
d4a77ebe0cf0845770506556c5bfef965e74a448
Base64
5aGx

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u5871';
console.log(char);  // Output: 塱

Java:

char c = '\u5871';
System.out.println(c);  // Output: 塱

JSON:

{"text": "\u5871"}  // Value: 塱

Python:

char = '\u5871'
print(char)  # Output: 塱

Perl:

my $char = "\x{5871}";
print $char;  # Output: 塱

PHP:

$char = "\x{5871}";
echo $char;  // Output: 塱

Ruby:

char = "\u{5871}"
puts char  # Output: 塱

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005871";  /* Display: 塱 */
}

HTML Decimal:

<p>HTML decimal: &#22641;</p>  <!-- Display: 塱 -->

HTML Hexadecimal:

<p>HTML hex: &#x5871;</p>  <!-- Display: 塱 -->

URL Encoding:

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

Encodings

MD5:

adfcbfcada4eb504ef4f7f09f6d95af8

SHA1:

d4a77ebe0cf0845770506556c5bfef965e74a448

Base64:

5aGx