Unicode Finder

"姻" U+59FB(CJK UNIFIED IDEOGRAPH-59FB)

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

Programming

C
\u59FB
JavaScript
\u59FB
Java
\u59FB
Json
\u59FB
Python
\u59FB
Perl
\x{59FB}
PHP
\x{59FB}
Ruby
\u{59FB}
Rust
\u{59FB}
Go
\u59FB

Web

CSS
\0059FB
HtmlDecimal
姻
HtmlHexadecimal
姻
Url
%E5%A7%BB

Code

MD5
4786f629b2b55d5a4f0bf6d477ca6d06
Sha1
01df1a8dd623203a76fec7cdee1df8979e766cc0
Base64
5ae7

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u59FB';
console.log(char);  // Output: 姻

Java:

char c = '\u59FB';
System.out.println(c);  // Output: 姻

JSON:

{"text": "\u59FB"}  // Value: 姻

Python:

char = '\u59FB'
print(char)  # Output: 姻

Perl:

my $char = "\x{59FB}";
print $char;  # Output: 姻

PHP:

$char = "\x{59FB}";
echo $char;  // Output: 姻

Ruby:

char = "\u{59FB}"
puts char  # Output: 姻

Rust:

let c = '\u{59FB}';
println!("{}", c);  // Output: 姻

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\0059FB";  /* Display: 姻 */
}

HTML Decimal:

<p>HTML decimal: &#23035;</p>  <!-- Display: 姻 -->

HTML Hexadecimal:

<p>HTML hex: &#x59FB;</p>  <!-- Display: 姻 -->

URL Encoding:

// 姻 URL encoding
https://unicodefinder.com/search.php?query=%E5%A7%BB

Encodings

MD5:

4786f629b2b55d5a4f0bf6d477ca6d06

SHA1:

01df1a8dd623203a76fec7cdee1df8979e766cc0

Base64:

5ae7