Unicode Finder

"徽" U+5FBD(CJK UNIFIED IDEOGRAPH-5FBD)

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

Programming

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

Web

CSS
\005FBD
HtmlDecimal
徽
HtmlHexadecimal
徽
Url
%E5%BE%BD

Code

MD5
41da5d152207efafcec736cd010307ee
Sha1
014b304ec82a7e9697868d85ed883a3a0f6970ff
Base64
5b69

使用範例

Programming Languages

C:

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

JavaScript:

const char = '\u5FBD';
console.log(char);  // Output: 徽

Java:

char c = '\u5FBD';
System.out.println(c);  // Output: 徽

JSON:

{"text": "\u5FBD"}  // Value: 徽

Python:

char = '\u5FBD'
print(char)  # Output: 徽

Perl:

my $char = "\x{5FBD}";
print $char;  # Output: 徽

PHP:

$char = "\x{5FBD}";
echo $char;  // Output: 徽

Ruby:

char = "\u{5FBD}"
puts char  # Output: 徽

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24509;</p>  <!-- Display: 徽 -->

HTML Hexadecimal:

<p>HTML hex: &#x5FBD;</p>  <!-- Display: 徽 -->

URL Encoding:

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

Encodings

MD5:

41da5d152207efafcec736cd010307ee

SHA1:

014b304ec82a7e9697868d85ed883a3a0f6970ff

Base64:

5b69