Unicode Finder

"嘡" U+5621(CJK UNIFIED IDEOGRAPH-5621)

U+5621
Blocknamn
CJK Unified Ideographs
Namn
CJK UNIFIED IDEOGRAPH-5621

Programming

C
\u5621
JavaScript
\u5621
Java
\u5621
Json
\u5621
Python
\u5621
Perl
\x{5621}
PHP
\x{5621}
Ruby
\u{5621}
Rust
\u{5621}
Go
\u5621

Web

CSS
\005621
HtmlDecimal
嘡
HtmlHexadecimal
嘡
Url
%E5%98%A1

Code

MD5
a7431fccb78fb9d5b8508ad215824bf5
Sha1
d425b85033838390a399732c8228def767646db4
Base64
5Zih

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u5621';
console.log(char);  // Output: 嘡

Java:

char c = '\u5621';
System.out.println(c);  // Output: 嘡

JSON:

{"text": "\u5621"}  // Value: 嘡

Python:

char = '\u5621'
print(char)  # Output: 嘡

Perl:

my $char = "\x{5621}";
print $char;  # Output: 嘡

PHP:

$char = "\x{5621}";
echo $char;  // Output: 嘡

Ruby:

char = "\u{5621}"
puts char  # Output: 嘡

Rust:

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

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\005621";  /* Display: 嘡 */
}

HTML Decimal:

<p>HTML decimal: &#22049;</p>  <!-- Display: 嘡 -->

HTML Hexadecimal:

<p>HTML hex: &#x5621;</p>  <!-- Display: 嘡 -->

URL Encoding:

// 嘡 URL encoding
https://unicodefinder.com/search.php?query=%E5%98%A1

Encodings

MD5:

a7431fccb78fb9d5b8508ad215824bf5

SHA1:

d425b85033838390a399732c8228def767646db4

Base64:

5Zih