Unicode Finder

"徸" U+5FB8(CJK UNIFIED IDEOGRAPH-5FB8)

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

Programming

C
\u5FB8
JavaScript
\u5FB8
Java
\u5FB8
Json
\u5FB8
Python
\u5FB8
Perl
\x{5FB8}
PHP
\x{5FB8}
Ruby
\u{5FB8}
Rust
\u{5FB8}
Go
\u5FB8

Web

CSS
\005FB8
HtmlDecimal
徸
HtmlHexadecimal
徸
Url
%E5%BE%B8

Code

MD5
53e91cf7bf6940abcc84f8f1b4a07ad9
Sha1
041d0e6ef077c7b04d726490ed90501feab7b787
Base64
5b64

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5FB8';
console.log(char);  // Output: 徸

Java:

char c = '\u5FB8';
System.out.println(c);  // Output: 徸

JSON:

{"text": "\u5FB8"}  // Value: 徸

Python:

char = '\u5FB8'
print(char)  # Output: 徸

Perl:

my $char = "\x{5FB8}";
print $char;  # Output: 徸

PHP:

$char = "\x{5FB8}";
echo $char;  // Output: 徸

Ruby:

char = "\u{5FB8}"
puts char  # Output: 徸

Rust:

let c = '\u{5FB8}';
println!("{}", c);  // Output: 徸

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005FB8";  /* Display: 徸 */
}

HTML Decimal:

<p>HTML decimal: &#24504;</p>  <!-- Display: 徸 -->

HTML Hexadecimal:

<p>HTML hex: &#x5FB8;</p>  <!-- Display: 徸 -->

URL Encoding:

// 徸 URL encoding
https://unicodefinder.com/search.php?query=%E5%BE%B8

Encodings

MD5:

53e91cf7bf6940abcc84f8f1b4a07ad9

SHA1:

041d0e6ef077c7b04d726490ed90501feab7b787

Base64:

5b64