Unicode Finder

"禐" U+7990(CJK UNIFIED IDEOGRAPH-7990)

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

Programming

C
\u7990
JavaScript
\u7990
Java
\u7990
Json
\u7990
Python
\u7990
Perl
\x{7990}
PHP
\x{7990}
Ruby
\u{7990}
Rust
\u{7990}
Go
\u7990

Web

CSS
\007990
HtmlDecimal
禐
HtmlHexadecimal
禐
Url
%E7%A6%90

Code

MD5
ddfc54c48742b825daac78775b91fd64
Sha1
64afc8ef1b4968b3149d05004b05ca2febd4b8f1
Base64
56aQ

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u7990';
console.log(char);  // Output: 禐

Java:

char c = '\u7990';
System.out.println(c);  // Output: 禐

JSON:

{"text": "\u7990"}  // Value: 禐

Python:

char = '\u7990'
print(char)  # Output: 禐

Perl:

my $char = "\x{7990}";
print $char;  # Output: 禐

PHP:

$char = "\x{7990}";
echo $char;  // Output: 禐

Ruby:

char = "\u{7990}"
puts char  # Output: 禐

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007990";  /* Display: 禐 */
}

HTML Decimal:

<p>HTML decimal: &#31120;</p>  <!-- Display: 禐 -->

HTML Hexadecimal:

<p>HTML hex: &#x7990;</p>  <!-- Display: 禐 -->

URL Encoding:

// 禐 URL encoding
https://unicodefinder.com/search.php?query=%E7%A6%90

Encodings

MD5:

ddfc54c48742b825daac78775b91fd64

SHA1:

64afc8ef1b4968b3149d05004b05ca2febd4b8f1

Base64:

56aQ