Unicode Finder

"垐" U+5790(CJK UNIFIED IDEOGRAPH-5790)

U+5790
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5790

Programming

C
\u5790
JavaScript
\u5790
Java
\u5790
Json
\u5790
Python
\u5790
Perl
\x{5790}
PHP
\x{5790}
Ruby
\u{5790}
Rust
\u{5790}
Go
\u5790

Web

CSS
\005790
HtmlDecimal
垐
HtmlHexadecimal
垐
Url
%E5%9E%90

Code

MD5
69ddf50604a07eebdb01e7d9066c5063
Sha1
e29e46c84b6ed66967c7b38af50d3b76e0e14c1d
Base64
5Z6Q

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5790';
console.log(char);  // Output: 垐

Java:

char c = '\u5790';
System.out.println(c);  // Output: 垐

JSON:

{"text": "\u5790"}  // Value: 垐

Python:

char = '\u5790'
print(char)  # Output: 垐

Perl:

my $char = "\x{5790}";
print $char;  # Output: 垐

PHP:

$char = "\x{5790}";
echo $char;  // Output: 垐

Ruby:

char = "\u{5790}"
puts char  # Output: 垐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005790";  /* Display: 垐 */
}

HTML Decimal:

<p>HTML decimal: &#22416;</p>  <!-- Display: 垐 -->

HTML Hexadecimal:

<p>HTML hex: &#x5790;</p>  <!-- Display: 垐 -->

URL Encoding:

// 垐 URL encoding
https://unicodefinder.com/search.php?query=%E5%9E%90

Encodings

MD5:

69ddf50604a07eebdb01e7d9066c5063

SHA1:

e29e46c84b6ed66967c7b38af50d3b76e0e14c1d

Base64:

5Z6Q