Unicode Finder

"孃" U+5B43(CJK UNIFIED IDEOGRAPH-5B43)

U+5B43
Blocknamn
CJK Unified Ideographs
Namn
CJK UNIFIED IDEOGRAPH-5B43

Programming

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

Web

CSS
\005B43
HtmlDecimal
孃
HtmlHexadecimal
孃
Url
%E5%AD%83

Code

MD5
40af848df7daf5253cb203774fd56757
Sha1
e858d3cc74dbfd7e423487c175db4766bee9f2f5
Base64
5a2D

Användningsexempel

Programming Languages

C:

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

JavaScript:

const char = '\u5B43';
console.log(char);  // Output: 孃

Java:

char c = '\u5B43';
System.out.println(c);  // Output: 孃

JSON:

{"text": "\u5B43"}  // Value: 孃

Python:

char = '\u5B43'
print(char)  # Output: 孃

Perl:

my $char = "\x{5B43}";
print $char;  # Output: 孃

PHP:

$char = "\x{5B43}";
echo $char;  // Output: 孃

Ruby:

char = "\u{5B43}"
puts char  # Output: 孃

Rust:

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

Go:

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

Web Technologies

CSS:

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

HTML Decimal:

<p>HTML decimal: &#23363;</p>  <!-- Display: 孃 -->

HTML Hexadecimal:

<p>HTML hex: &#x5B43;</p>  <!-- Display: 孃 -->

URL Encoding:

// 孃 URL encoding
https://unicodefinder.com/search.php?query=%E5%AD%83

Encodings

MD5:

40af848df7daf5253cb203774fd56757

SHA1:

e858d3cc74dbfd7e423487c175db4766bee9f2f5

Base64:

5a2D