Unicode Finder

"徫" U+5FAB(CJK UNIFIED IDEOGRAPH-5FAB)

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

Programming

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

Web

CSS
\005FAB
HtmlDecimal
徫
HtmlHexadecimal
徫
Url
%E5%BE%AB

Code

MD5
eea3c00eddb2a64051e445623f3bde0d
Sha1
c7f8b3240aaae87b2c82e9d28f6b7055e7617ed3
Base64
5b6r

使用示例

Programming Languages

C:

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

JavaScript:

const char = '\u5FAB';
console.log(char);  // Output: 徫

Java:

char c = '\u5FAB';
System.out.println(c);  // Output: 徫

JSON:

{"text": "\u5FAB"}  // Value: 徫

Python:

char = '\u5FAB'
print(char)  # Output: 徫

Perl:

my $char = "\x{5FAB}";
print $char;  # Output: 徫

PHP:

$char = "\x{5FAB}";
echo $char;  // Output: 徫

Ruby:

char = "\u{5FAB}"
puts char  # Output: 徫

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#24491;</p>  <!-- Display: 徫 -->

HTML Hexadecimal:

<p>HTML hex: &#x5FAB;</p>  <!-- Display: 徫 -->

URL Encoding:

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

Encodings

MD5:

eea3c00eddb2a64051e445623f3bde0d

SHA1:

c7f8b3240aaae87b2c82e9d28f6b7055e7617ed3

Base64:

5b6r