Unicode Finder

"礢" U+7922(CJK UNIFIED IDEOGRAPH-7922)

U+7922
區塊名稱
CJK Unified Ideographs
名稱
CJK UNIFIED IDEOGRAPH-7922

Programming

C
\u7922
JavaScript
\u7922
Java
\u7922
Json
\u7922
Python
\u7922
Perl
\x{7922}
PHP
\x{7922}
Ruby
\u{7922}
Rust
\u{7922}
Go
\u7922

Web

CSS
\007922
HtmlDecimal
礢
HtmlHexadecimal
礢
Url
%E7%A4%A2

Code

MD5
33ac9db1c7eaa1c65fa24859155d180b
Sha1
e56e54fe252291bb35a5dd741236281472fb5e42
Base64
56Si

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7922';
console.log(char);  // Output: 礢

Java:

char c = '\u7922';
System.out.println(c);  // Output: 礢

JSON:

{"text": "\u7922"}  // Value: 礢

Python:

char = '\u7922'
print(char)  # Output: 礢

Perl:

my $char = "\x{7922}";
print $char;  # Output: 礢

PHP:

$char = "\x{7922}";
echo $char;  // Output: 礢

Ruby:

char = "\u{7922}"
puts char  # Output: 礢

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007922";  /* Display: 礢 */
}

HTML Decimal:

<p>HTML decimal: &#31010;</p>  <!-- Display: 礢 -->

HTML Hexadecimal:

<p>HTML hex: &#x7922;</p>  <!-- Display: 礢 -->

URL Encoding:

// 礢 URL encoding
https://unicodefinder.com/search.php?query=%E7%A4%A2

Encodings

MD5:

33ac9db1c7eaa1c65fa24859155d180b

SHA1:

e56e54fe252291bb35a5dd741236281472fb5e42

Base64:

56Si