Unicode Finder

"徔" U+5F94(CJK UNIFIED IDEOGRAPH-5F94)

U+5F94
区块名称
CJK Unified Ideographs
名称
CJK UNIFIED IDEOGRAPH-5F94

Programming

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

Web

CSS
\005F94
HtmlDecimal
徔
HtmlHexadecimal
徔
Url
%E5%BE%94

Code

MD5
bf615c5fa827208f09f44e8fc26ee2e9
Sha1
1dd6deab5766fdc7bac4d5ad91dee9eb2c6e8f14
Base64
5b6U

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5F94';
console.log(char);  // Output: 徔

Java:

char c = '\u5F94';
System.out.println(c);  // Output: 徔

JSON:

{"text": "\u5F94"}  // Value: 徔

Python:

char = '\u5F94'
print(char)  # Output: 徔

Perl:

my $char = "\x{5F94}";
print $char;  # Output: 徔

PHP:

$char = "\x{5F94}";
echo $char;  // Output: 徔

Ruby:

char = "\u{5F94}"
puts char  # Output: 徔

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24468;</p>  <!-- Display: 徔 -->

HTML Hexadecimal:

<p>HTML hex: &#x5F94;</p>  <!-- Display: 徔 -->

URL Encoding:

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

Encodings

MD5:

bf615c5fa827208f09f44e8fc26ee2e9

SHA1:

1dd6deab5766fdc7bac4d5ad91dee9eb2c6e8f14

Base64:

5b6U