Unicode Finder

"塭" U+586D(CJK UNIFIED IDEOGRAPH-586D)

U+586D
Název Bloku
CJK Unified Ideographs
Název
CJK UNIFIED IDEOGRAPH-586D

Programming

C
\u586D
JavaScript
\u586D
Java
\u586D
Json
\u586D
Python
\u586D
Perl
\x{586D}
PHP
\x{586D}
Ruby
\u{586D}
Rust
\u{586D}
Go
\u586D

Web

CSS
\00586D
HtmlDecimal
塭
HtmlHexadecimal
塭
Url
%E5%A1%AD

Code

MD5
5a2fcb436b76792dd07cfafdf89f1ee9
Sha1
31756d81a64c118ae105037c2e0fd7f1545e5e6b
Base64
5aGt

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u586D';
console.log(char);  // Output: 塭

Java:

char c = '\u586D';
System.out.println(c);  // Output: 塭

JSON:

{"text": "\u586D"}  // Value: 塭

Python:

char = '\u586D'
print(char)  # Output: 塭

Perl:

my $char = "\x{586D}";
print $char;  # Output: 塭

PHP:

$char = "\x{586D}";
echo $char;  // Output: 塭

Ruby:

char = "\u{586D}"
puts char  # Output: 塭

Rust:

let c = '\u{586D}';
println!("{}", c);  // Output: 塭

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00586D";  /* Display: 塭 */
}

HTML Decimal:

<p>HTML decimal: &#22637;</p>  <!-- Display: 塭 -->

HTML Hexadecimal:

<p>HTML hex: &#x586D;</p>  <!-- Display: 塭 -->

URL Encoding:

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

Encodings

MD5:

5a2fcb436b76792dd07cfafdf89f1ee9

SHA1:

31756d81a64c118ae105037c2e0fd7f1545e5e6b

Base64:

5aGt