Unicode Finder

"兹" U+5179(CJK UNIFIED IDEOGRAPH-5179)

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

Programming

C
\u5179
JavaScript
\u5179
Java
\u5179
Json
\u5179
Python
\u5179
Perl
\x{5179}
PHP
\x{5179}
Ruby
\u{5179}
Rust
\u{5179}
Go
\u5179

Web

CSS
\005179
HtmlDecimal
兹
HtmlHexadecimal
兹
Url
%E5%85%B9

Code

MD5
5db389eb67c5d91412c2ce1de197d310
Sha1
eac69a43f21718c8826770e5f9bc02de38a50b0b
Base64
5YW5

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5179';
console.log(char);  // Output: 兹

Java:

char c = '\u5179';
System.out.println(c);  // Output: 兹

JSON:

{"text": "\u5179"}  // Value: 兹

Python:

char = '\u5179'
print(char)  # Output: 兹

Perl:

my $char = "\x{5179}";
print $char;  # Output: 兹

PHP:

$char = "\x{5179}";
echo $char;  // Output: 兹

Ruby:

char = "\u{5179}"
puts char  # Output: 兹

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005179";  /* Display: 兹 */
}

HTML Decimal:

<p>HTML decimal: &#20857;</p>  <!-- Display: 兹 -->

HTML Hexadecimal:

<p>HTML hex: &#x5179;</p>  <!-- Display: 兹 -->

URL Encoding:

// 兹 URL encoding
https://unicodefinder.com/search.php?query=%E5%85%B9

Encodings

MD5:

5db389eb67c5d91412c2ce1de197d310

SHA1:

eac69a43f21718c8826770e5f9bc02de38a50b0b

Base64:

5YW5