Unicode Finder

"煷" U+7177(CJK UNIFIED IDEOGRAPH-7177)

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

Programming

C
\u7177
JavaScript
\u7177
Java
\u7177
Json
\u7177
Python
\u7177
Perl
\x{7177}
PHP
\x{7177}
Ruby
\u{7177}
Rust
\u{7177}
Go
\u7177

Web

CSS
\007177
HtmlDecimal
煷
HtmlHexadecimal
煷
Url
%E7%85%B7

Code

MD5
f2c0c06615c6a1766eb786682b3e5bf3
Sha1
37700723afdca39c0ce4ab83221fdbb0adb5cecb
Base64
54W3

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u7177';
console.log(char);  // Output: 煷

Java:

char c = '\u7177';
System.out.println(c);  // Output: 煷

JSON:

{"text": "\u7177"}  // Value: 煷

Python:

char = '\u7177'
print(char)  # Output: 煷

Perl:

my $char = "\x{7177}";
print $char;  # Output: 煷

PHP:

$char = "\x{7177}";
echo $char;  // Output: 煷

Ruby:

char = "\u{7177}"
puts char  # Output: 煷

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\007177";  /* Display: 煷 */
}

HTML Decimal:

<p>HTML decimal: &#29047;</p>  <!-- Display: 煷 -->

HTML Hexadecimal:

<p>HTML hex: &#x7177;</p>  <!-- Display: 煷 -->

URL Encoding:

// 煷 URL encoding
https://unicodefinder.com/search.php?query=%E7%85%B7

Encodings

MD5:

f2c0c06615c6a1766eb786682b3e5bf3

SHA1:

37700723afdca39c0ce4ab83221fdbb0adb5cecb

Base64:

54W3