Unicode Finder

"礋" U+790B(CJK UNIFIED IDEOGRAPH-790B)

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

Programming

C
\u790B
JavaScript
\u790B
Java
\u790B
Json
\u790B
Python
\u790B
Perl
\x{790B}
PHP
\x{790B}
Ruby
\u{790B}
Rust
\u{790B}
Go
\u790B

Web

CSS
\00790B
HtmlDecimal
礋
HtmlHexadecimal
礋
Url
%E7%A4%8B

Code

MD5
25470ae7dcd75cc8677be01485b7a920
Sha1
b76fafe4bc145ac6ce3006e4e8ec9546d17034f3
Base64
56SL

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u790B';
console.log(char);  // Output: 礋

Java:

char c = '\u790B';
System.out.println(c);  // Output: 礋

JSON:

{"text": "\u790B"}  // Value: 礋

Python:

char = '\u790B'
print(char)  # Output: 礋

Perl:

my $char = "\x{790B}";
print $char;  # Output: 礋

PHP:

$char = "\x{790B}";
echo $char;  // Output: 礋

Ruby:

char = "\u{790B}"
puts char  # Output: 礋

Rust:

let c = '\u{790B}';
println!("{}", c);  // Output: 礋

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00790B";  /* Display: 礋 */
}

HTML Decimal:

<p>HTML decimal: &#30987;</p>  <!-- Display: 礋 -->

HTML Hexadecimal:

<p>HTML hex: &#x790B;</p>  <!-- Display: 礋 -->

URL Encoding:

// 礋 URL encoding
https://unicodefinder.com/search.php?query=%E7%A4%8B

Encodings

MD5:

25470ae7dcd75cc8677be01485b7a920

SHA1:

b76fafe4bc145ac6ce3006e4e8ec9546d17034f3

Base64:

56SL