Unicode Finder

"礒" U+7912(CJK UNIFIED IDEOGRAPH-7912)

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

Programming

C
\u7912
JavaScript
\u7912
Java
\u7912
Json
\u7912
Python
\u7912
Perl
\x{7912}
PHP
\x{7912}
Ruby
\u{7912}
Rust
\u{7912}
Go
\u7912

Web

CSS
\007912
HtmlDecimal
礒
HtmlHexadecimal
礒
Url
%E7%A4%92

Code

MD5
28068b652ca309edc6b618a6dfca484c
Sha1
9430fc38881bed51dafbd3100b30fc8f43683ded
Base64
56SS

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7912';
console.log(char);  // Output: 礒

Java:

char c = '\u7912';
System.out.println(c);  // Output: 礒

JSON:

{"text": "\u7912"}  // Value: 礒

Python:

char = '\u7912'
print(char)  # Output: 礒

Perl:

my $char = "\x{7912}";
print $char;  # Output: 礒

PHP:

$char = "\x{7912}";
echo $char;  // Output: 礒

Ruby:

char = "\u{7912}"
puts char  # Output: 礒

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007912";  /* Display: 礒 */
}

HTML Decimal:

<p>HTML decimal: &#30994;</p>  <!-- Display: 礒 -->

HTML Hexadecimal:

<p>HTML hex: &#x7912;</p>  <!-- Display: 礒 -->

URL Encoding:

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

Encodings

MD5:

28068b652ca309edc6b618a6dfca484c

SHA1:

9430fc38881bed51dafbd3100b30fc8f43683ded

Base64:

56SS