Unicode Finder

"坝" U+575D(CJK UNIFIED IDEOGRAPH-575D)

U+575D
Bloknaam
CJK Unified Ideographs
Naam
CJK UNIFIED IDEOGRAPH-575D

Programming

C
\u575D
JavaScript
\u575D
Java
\u575D
Json
\u575D
Python
\u575D
Perl
\x{575D}
PHP
\x{575D}
Ruby
\u{575D}
Rust
\u{575D}
Go
\u575D

Web

CSS
\00575D
HtmlDecimal
坝
HtmlHexadecimal
坝
Url
%E5%9D%9D

Code

MD5
5e99bcd68e3dd3e68c7d81b9741ddb44
Sha1
846f45d317593aa86a7a6171d5402080ecec4fd6
Base64
5Z2d

Gebruiksvoorbeelden

Programming Languages

C:

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

JavaScript:

const char = '\u575D';
console.log(char);  // Output: 坝

Java:

char c = '\u575D';
System.out.println(c);  // Output: 坝

JSON:

{"text": "\u575D"}  // Value: 坝

Python:

char = '\u575D'
print(char)  # Output: 坝

Perl:

my $char = "\x{575D}";
print $char;  # Output: 坝

PHP:

$char = "\x{575D}";
echo $char;  // Output: 坝

Ruby:

char = "\u{575D}"
puts char  # Output: 坝

Rust:

let c = '\u{575D}';
println!("{}", c);  // Output: 坝

Go:

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

Web Technologies

CSS:

/* CSS content property */
.element::before {
content: "\00575D";  /* Display: 坝 */
}

HTML Decimal:

<p>HTML decimal: &#22365;</p>  <!-- Display: 坝 -->

HTML Hexadecimal:

<p>HTML hex: &#x575D;</p>  <!-- Display: 坝 -->

URL Encoding:

// 坝 URL encoding
https://unicodefinder.com/search.php?query=%E5%9D%9D

Encodings

MD5:

5e99bcd68e3dd3e68c7d81b9741ddb44

SHA1:

846f45d317593aa86a7a6171d5402080ecec4fd6

Base64:

5Z2d