Unicode Finder

"礎" U+790E(CJK UNIFIED IDEOGRAPH-790E)

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

Programming

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

Web

CSS
\00790E
HtmlDecimal
礎
HtmlHexadecimal
礎
Url
%E7%A4%8E

Code

MD5
4e9874e24c255731866ff0dacb68f58b
Sha1
a0d50d8412f078332e2df1f9562fd8cca99ceea5
Base64
56SO

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u790E';
console.log(char);  // Output: 礎

Java:

char c = '\u790E';
System.out.println(c);  // Output: 礎

JSON:

{"text": "\u790E"}  // Value: 礎

Python:

char = '\u790E'
print(char)  # Output: 礎

Perl:

my $char = "\x{790E}";
print $char;  # Output: 礎

PHP:

$char = "\x{790E}";
echo $char;  // Output: 礎

Ruby:

char = "\u{790E}"
puts char  # Output: 礎

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30990;</p>  <!-- Display: 礎 -->

HTML Hexadecimal:

<p>HTML hex: &#x790E;</p>  <!-- Display: 礎 -->

URL Encoding:

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

Encodings

MD5:

4e9874e24c255731866ff0dacb68f58b

SHA1:

a0d50d8412f078332e2df1f9562fd8cca99ceea5

Base64:

56SO