Unicode Finder

"唆" U+5506(CJK UNIFIED IDEOGRAPH-5506)

U+5506
Назва Блоку
CJK Unified Ideographs
Назва
CJK UNIFIED IDEOGRAPH-5506

Programming

C
\u5506
JavaScript
\u5506
Java
\u5506
Json
\u5506
Python
\u5506
Perl
\x{5506}
PHP
\x{5506}
Ruby
\u{5506}
Rust
\u{5506}
Go
\u5506

Web

CSS
\005506
HtmlDecimal
唆
HtmlHexadecimal
唆
Url
%E5%94%86

Code

MD5
7f6ed4fb4e97fe7284b04f8fdf393deb
Sha1
3522674cab4aa48301d362f99d443cd5fb401597
Base64
5ZSG

Приклади Використання

Programming Languages

C:

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

JavaScript:

const char = '\u5506';
console.log(char);  // Output: 唆

Java:

char c = '\u5506';
System.out.println(c);  // Output: 唆

JSON:

{"text": "\u5506"}  // Value: 唆

Python:

char = '\u5506'
print(char)  # Output: 唆

Perl:

my $char = "\x{5506}";
print $char;  # Output: 唆

PHP:

$char = "\x{5506}";
echo $char;  // Output: 唆

Ruby:

char = "\u{5506}"
puts char  # Output: 唆

Rust:

let c = '\u{5506}';
println!("{}", c);  // Output: 唆

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005506";  /* Display: 唆 */
}

HTML Decimal:

<p>HTML decimal: &#21766;</p>  <!-- Display: 唆 -->

HTML Hexadecimal:

<p>HTML hex: &#x5506;</p>  <!-- Display: 唆 -->

URL Encoding:

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

Encodings

MD5:

7f6ed4fb4e97fe7284b04f8fdf393deb

SHA1:

3522674cab4aa48301d362f99d443cd5fb401597

Base64:

5ZSG