Unicode Finder

"磻" U+78FB(CJK UNIFIED IDEOGRAPH-78FB)

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

Programming

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

Web

CSS
\0078FB
HtmlDecimal
磻
HtmlHexadecimal
磻
Url
%E7%A3%BB

Code

MD5
2844bea57b0604e5f4a459270ecc288c
Sha1
d98ce5124d72adc6f7d05b6550f25d5947b03b5f
Base64
56O7

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u78FB';
console.log(char);  // Output: 磻

Java:

char c = '\u78FB';
System.out.println(c);  // Output: 磻

JSON:

{"text": "\u78FB"}  // Value: 磻

Python:

char = '\u78FB'
print(char)  # Output: 磻

Perl:

my $char = "\x{78FB}";
print $char;  # Output: 磻

PHP:

$char = "\x{78FB}";
echo $char;  // Output: 磻

Ruby:

char = "\u{78FB}"
puts char  # Output: 磻

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#30971;</p>  <!-- Display: 磻 -->

HTML Hexadecimal:

<p>HTML hex: &#x78FB;</p>  <!-- Display: 磻 -->

URL Encoding:

// 磻 URL encoding
https://unicodefinder.com/search.php?query=%E7%A3%BB

Encodings

MD5:

2844bea57b0604e5f4a459270ecc288c

SHA1:

d98ce5124d72adc6f7d05b6550f25d5947b03b5f

Base64:

56O7