Unicode Finder

"塔" U+5854(CJK UNIFIED IDEOGRAPH-5854)

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

Programming

C
\u5854
JavaScript
\u5854
Java
\u5854
Json
\u5854
Python
\u5854
Perl
\x{5854}
PHP
\x{5854}
Ruby
\u{5854}
Rust
\u{5854}
Go
\u5854

Web

CSS
\005854
HtmlDecimal
塔
HtmlHexadecimal
塔
Url
%E5%A1%94

Code

MD5
9a626a186f5ce819550da5e9c635901a
Sha1
e8cf911a5cc930fc3536afd37c59e276c4b71f68
Base64
5aGU

Příklady Použití

Programming Languages

C:

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

JavaScript:

const char = '\u5854';
console.log(char);  // Output: 塔

Java:

char c = '\u5854';
System.out.println(c);  // Output: 塔

JSON:

{"text": "\u5854"}  // Value: 塔

Python:

char = '\u5854'
print(char)  # Output: 塔

Perl:

my $char = "\x{5854}";
print $char;  # Output: 塔

PHP:

$char = "\x{5854}";
echo $char;  // Output: 塔

Ruby:

char = "\u{5854}"
puts char  # Output: 塔

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005854";  /* Display: 塔 */
}

HTML Decimal:

<p>HTML decimal: &#22612;</p>  <!-- Display: 塔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5854;</p>  <!-- Display: 塔 -->

URL Encoding:

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

Encodings

MD5:

9a626a186f5ce819550da5e9c635901a

SHA1:

e8cf911a5cc930fc3536afd37c59e276c4b71f68

Base64:

5aGU